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

Merge branch 'master' of git@github.com:preble/P-ROC

This commit is contained in:
gstellenberg
2009-10-25 13:13:03 -05:00
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)