1
0
mirror of https://github.com/preble/libpinproc synced 2026-02-24 18:25:23 +01:00

Fixed compiler warnings.

This commit is contained in:
preble
2009-10-25 10:43:06 -04:00
parent c51af65a05
commit b81b80c311
2 changed files with 7 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ void PRLog(PRLogLevel level, const char *format, ...)
if (logCallback)
logCallback(level, line);
else
fprintf(stderr, line);
fprintf(stderr, "%s", line);
}
void PRLogSetCallback(PRLogCallback callback)