* Fix 64-bit compilation
This commit is contained in:
jean.chalard
2010-06-13 09:38:58 +00:00
parent 3c6c561753
commit f14f56b9ce
+1 -1
View File
@@ -18,7 +18,7 @@ void JLogger::Log(const char * text){
OutputDebugString(text); OutputDebugString(text);
OutputDebugString("\n"); OutputDebugString("\n");
#else #else
printf(text); printf("%s", text);
printf("\n"); printf("\n");
#endif #endif