From 60c8824bffff8513464fec58921fae8b406b7e94 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Fri, 4 Apr 2014 12:08:28 -0500 Subject: [PATCH] MOAR code cleanup. --- src/log.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.37.2