try printf instead

This commit is contained in:
Alex Groce 2018-07-28 04:45:29 -07:00
parent 5529d560f3
commit dbc2adc360

View File

@ -157,7 +157,7 @@ int vfprintf(FILE *file, const char *format, va_list args) {
"vfprintf with non-stdout/stderr stream follows:");
DeepState_LogVFormat(DeepState_LogInfo, format, args);
} else {
DeepState_LogVFormat(DeepState_LogCritical, format, args);
printf(format, args);
}
}