default: level_string = "UNKNOWN";
}
- va_start(ap, format);
-#ifdef DEBUG
- fprintf(stdout, "%-12s:%-3d ", file, line);
-#else
+#ifndef DEBUG
+ /* Prevent warnings. */
(void)file;
(void)line;
#endif
- fprintf(stdout, "[%s] [%d] ", level_string, (int)pthread_self());
+
+ va_start(ap, format);
+ fprintf(stdout,
+#ifdef DEBUG
+ "%-12s:%-3d "
+#endif
+ "[%s] [%d] ",
+#ifdef DEBUG
+ file, line,
+#endif
+ level_string, (int)pthread_self());
vfprintf(stdout, format, ap);
fprintf(stdout, "\n");
va_end(ap);