From f8a62c444f070b5e7f1ed00a2a322d01da729775 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 26 Sep 2004 23:48:31 -0400 Subject: made several of the buffers used non-static --- debug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debug.h') diff --git a/debug.h b/debug.h index 5c7345cf..7d3bb668 100644 --- a/debug.h +++ b/debug.h @@ -62,8 +62,8 @@ bool _debug_active(const char * const cls); #define DEBUG_PRINT_(x) DEBUG_PRINT(_debug_cls, x) #define DEBUG_PRINT_TIME(cls, x) { \ - char buf[256]; \ - std::strftime(buf, 255, "%Y/%m/%d", std::localtime(&x)); \ + char buf[16]; \ + std::strftime(buf, 15, "%Y/%m/%d", std::localtime(&x)); \ DEBUG_PRINT(cls, #x << " is " << buf); \ } -- cgit v1.2.3