Applied rest of kalibers patch from ticket #6349. The logging

function in the common accelerant code wasn't public in the first
place and the patch was a correction for r37670, sorry for
missing that. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39321 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2010-11-06 11:33:59 +00:00
parent 4c9da6dc09
commit fdca7b0ff3
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,7 @@
system_info sysinfo; system_info sysinfo;
// dump one entry // dump one entry
void log_printentry( FILE *logfile, log_entry *entry ) static void log_printentry( FILE *logfile, log_entry *entry )
{ {
uint64 time; uint64 time;
uint32 min, sec, mill, mic; uint32 min, sec, mill, mic;

View File

@ -13,6 +13,5 @@
#include <SupportDefs.h> #include <SupportDefs.h>
void log_printall( FILE *logfile, char *buffer, uint32 buffer_len ); void log_printall( FILE *logfile, char *buffer, uint32 buffer_len );
void log_printentry( FILE *logfile, log_entry *entry );
#endif #endif