* Fix 64-bit compilation
This commit is contained in:
jean.chalard
2010-06-13 09:38:58 +00:00
parent 3c6c561753
commit f14f56b9ce

View File

@@ -18,7 +18,7 @@ void JLogger::Log(const char * text){
OutputDebugString(text);
OutputDebugString("\n");
#else
printf(text);
printf("%s", text);
printf("\n");
#endif