DEVEL15-tweak-vicelog-macros-20081221

LICENSE IPL10

add missing semi-colons left out from DELTA tweak-vicelog-macros-20081218


(cherry picked from commit 46abfec0c74e6a1d4c5c76afcd24192484e2d0fa)
This commit is contained in:
Jeffrey Altman 2008-12-21 06:00:41 +00:00
parent 95625ad563
commit fce5bacad4

View File

@ -43,8 +43,8 @@ extern void vFSLog(const char *format, va_list args);
extern void SetLogThreadNumProgram(int (*func) (void) ); extern void SetLogThreadNumProgram(int (*func) (void) );
/*@printflike@*/ extern void FSLog(const char *format, ...); /*@printflike@*/ extern void FSLog(const char *format, ...);
#define ViceLog(level, str) do { if ((level) <= LogLevel) (FSLog str) } while (0) #define ViceLog(level, str) do { if ((level) <= LogLevel) (FSLog str); } while (0)
#define vViceLog(level, str) do { if ((level) <= LogLevel) (vFSLog str) } while (0) #define vViceLog(level, str) do { if ((level) <= LogLevel) (vFSLog str); } while (0)
extern int OpenLog(const char *filename); extern int OpenLog(const char *filename);
extern int ReOpenLog(const char *fileName); extern int ReOpenLog(const char *fileName);