(svn r11755) -Fix: Debug level string buffer was not long enough to contain all debug levels.
authorpeter1138
Fri, 04 Jan 2008 10:09:57 +0000
changeset 8192 807098a4e2c1
parent 8191 078848981ade
child 8193 a6680b9d7eb1
(svn r11755) -Fix: Debug level string buffer was not long enough to contain all debug levels.
src/debug.cpp
--- a/src/debug.cpp	Fri Jan 04 03:31:08 2008 +0000
+++ b/src/debug.cpp	Fri Jan 04 10:09:57 2008 +0000
@@ -162,7 +162,7 @@
 const char *GetDebugString()
 {
 	const DebugLevel *i;
-	static char dbgstr[100];
+	static char dbgstr[150];
 	char dbgval[20];
 
 	memset(dbgstr, 0, sizeof(dbgstr));