From: Jeffrey Altman Date: Sun, 21 Dec 2008 05:59:57 +0000 (+0000) Subject: STABLE14-tweak-vicelog-macros-20081221 X-Git-Tag: openafs-stable-1_4_9pre1~83 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=5489a652b3e4f70295a423afc8f2e65d4aeec320;p=packages%2Fo%2Fopenafs.git STABLE14-tweak-vicelog-macros-20081221 LICENSE IPL10 add missing semi-colons left out from DELTA tweak-vicelog-macros-20081218 (cherry picked from commit 46abfec0c74e6a1d4c5c76afcd24192484e2d0fa) --- diff --git a/src/util/afsutil.h b/src/util/afsutil.h index 50c1802f3..413f2f18f 100644 --- a/src/util/afsutil.h +++ b/src/util/afsutil.h @@ -43,8 +43,8 @@ extern void vFSLog(const char *format, va_list args); extern void SetLogThreadNumProgram(int (*func) (void) ); /*@printflike@*/ extern void FSLog(const char *format, ...); -#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 ViceLog(level, str) do { if ((level) <= LogLevel) (FSLog str); } while (0) +#define vViceLog(level, str) do { if ((level) <= LogLevel) (vFSLog str); } while (0) extern int OpenLog(const char *filename); extern int ReOpenLog(const char *fileName);