]> Shamusworld >> Repos - thunder/blobdiff - src/log.cpp
Inital stab at cleanup/making the damn thing work...
[thunder] / src / log.cpp
index 236d56385e254651118b5f6cb1f8b08f88b052e0..adf8a18a32cb137752e436e5205fbe0533c2a5f0 100755 (executable)
@@ -2,6 +2,13 @@
 // Log handler
 //
 // by James L. Hammons
+// (c) 2004, 2009 Underground Software
+//
+// JLH = James L. Hammons <jlhamm@acm.org>
+//
+// WHO  WHEN        WHAT
+// ---  ----------  ------------------------------------------------------------
+// JLH  07/23/2009  Added changelog ;-)
 //
 
 #include "types.h"
@@ -12,7 +19,7 @@
 static FILE * log_stream = NULL;
 static uint32 logSize = 0;
 
-bool InitLog(char * path)
+bool InitLog(const char * path)
 {
        log_stream = fopen(path, "wrt");