(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 8688 89da78a54edb
parent 8687 0446dbc05291
child 8689 ef053e1c6940
(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));