fixed overflow warning
authorKevron Rees <tripzero.kev@gmail.com>
Sun, 19 May 2013 02:40:50 +0000 (19:40 -0700)
committerKevron Rees <tripzero.kev@gmail.com>
Sun, 19 May 2013 02:40:50 +0000 (19:40 -0700)
lib/debugout.cpp

index e0c8a49..36053dc 100644 (file)
@@ -23,8 +23,8 @@ using namespace std;
 int DebugOut::debugThreshhold = 0;
 std::streambuf * DebugOut::buf = cout.rdbuf();
 
-const int DebugOut::Error = 9999999999;
-const int DebugOut::Warning = 9999999998;
+const int DebugOut::Error = 999999;
+const int DebugOut::Warning = 999998;
 
 void debugOut(string message)
 {