Commit 2132b5cc by Gleb Novodran Committed by omarzohdi

Fixed win32 console build

Using logLevel param instead of undefined 'error' variable.
parent c7e811b8
...@@ -56,7 +56,7 @@ inline void logOutput(const int logLevel, const char* const formatString, va_lis ...@@ -56,7 +56,7 @@ inline void logOutput(const int logLevel, const char* const formatString, va_lis
OutputDebugString("\n"); OutputDebugString("\n");
} }
#else #else
printf("%s", procAddressMessageTypes[error]); printf("%s", procAddressMessageTypes[logLevel]);
vprintf(formatString, tempList); vprintf(formatString, tempList);
printf("\n"); printf("\n");
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment