]> Shamusworld >> Repos - apple2/blobdiff - src/log.cpp
Fixed non-const function in log.h/cpp
[apple2] / src / log.cpp
index 76055665f247cea49ba1d1a78891f9d699f5727e..c52620c06813ce407fa8b13589b2ec8dbefeb0f9 100755 (executable)
@@ -23,7 +23,7 @@
 static FILE * log_stream = NULL;
 static uint32 logSize = 0;
 
-bool InitLog(char * path)
+bool InitLog(const char * path)
 {
        log_stream = fopen(path, "wrt");