]> Shamusworld >> Repos - thunder/commitdiff
MOAR code cleanup.
authorShamus Hammons <jlhamm@acm.org>
Fri, 4 Apr 2014 17:08:28 +0000 (12:08 -0500)
committerShamus Hammons <jlhamm@acm.org>
Fri, 4 Apr 2014 17:08:28 +0000 (12:08 -0500)
src/log.cpp

index 623a6b97e187a27c226890ad1d0734b050c0ff40..c39a0b322ce200aff64f9303849510a9aadc00c2 100644 (file)
 // JLH  07/23/2009  Added changelog ;-)
 //
 
-#include "types.h"
 #include "log.h"
+#include <stdint.h>
 
 #define MAX_LOG_SIZE           10000000                // Maximum size of log file (10 MB)
 
 static FILE * logStream = NULL;
-static uint32 logSize = 0;
+static uint32_t logSize = 0;
 
 
 bool InitLog(const char * path)