increase dbg_printf buffer in debug/debugger.c
authorMatthias Braun <matthias.braun@kit.edu>
Wed, 13 Jun 2012 08:59:25 +0000 (10:59 +0200)
committerMatthias Braun <matthias.braun@kit.edu>
Wed, 13 Jun 2012 08:59:25 +0000 (10:59 +0200)
ir/debug/debugger.c

index 9a10337..ae9afa3 100644 (file)
@@ -215,7 +215,7 @@ const char *firm_debug_text(void)
  */
 static void dbg_printf(const char *fmt, ...)
 {
-       char buf[1024];
+       static char buf[2048];
 
        va_list args;
        va_start(args, fmt);