From: Shamus Hammons Date: Fri, 4 Apr 2014 17:08:28 +0000 (-0500) Subject: MOAR code cleanup. X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=thunder;a=commitdiff_plain;h=60c8824bffff8513464fec58921fae8b406b7e94 MOAR code cleanup. --- diff --git a/src/log.cpp b/src/log.cpp index 623a6b9..c39a0b3 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -11,13 +11,13 @@ // JLH 07/23/2009 Added changelog ;-) // -#include "types.h" #include "log.h" +#include #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)