Index: include/os/OsSysLog.h =================================================================== --- include/os/OsSysLog.h (revision 6818) +++ include/os/OsSysLog.h (working copy) @@ -330,7 +330,7 @@ const OsSysLogFacility facility, const OsSysLogPriority priority, const char* format, - const va_list ap) + va_list ap) #ifdef __GNUC__ // with the -Wformat switch, this enables format string checking __attribute__ ((format (printf, 5, 0))) Index: src/os/OsSysLog.cpp =================================================================== --- src/os/OsSysLog.cpp (revision 6818) +++ src/os/OsSysLog.cpp (working copy) @@ -63,7 +63,7 @@ // LOCAL FUNCTIONS static void mysprintf(UtlString& results, const char* format, ...) ; -static void myvsprintf(UtlString& results, const char* format, OS_VA_ARG_CONST va_list args) ; +static void myvsprintf(UtlString& results, const char* format, va_list args) ; /* //////////////////////////// PUBLIC //////////////////////////////////// */ @@ -314,7 +314,7 @@ const OsSysLogFacility facility, const OsSysLogPriority priority, const char* format, - const va_list ap) + va_list ap) { // If the log has not been initialized, print everything to the console if (spOsSysLogTask != NULL) @@ -857,7 +857,7 @@ // a version of vsprintf that stores results in an UtlString -void myvsprintf(UtlString& results, const char* format, OS_VA_ARG_CONST va_list args) +void myvsprintf(UtlString& results, const char* format, va_list args) { /* Guess we need no more than 384 bytes. */ int n, size = 384;