From 2f7292cbeb12aea6676c53a5efce8203a4df050b Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 21 Mar 2001 23:54:59 +0000 Subject: [PATCH] Increase debug buffer size up to 1024 bytes. --- dlls/ntdll/debugtools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/debugtools.c b/dlls/ntdll/debugtools.c index 1e5ae584b67..92ec71f8d83 100644 --- a/dlls/ntdll/debugtools.c +++ b/dlls/ntdll/debugtools.c @@ -21,8 +21,8 @@ struct debug_info { char *str_pos; /* current position in strings buffer */ char *out_pos; /* current position in output buffer */ - char strings[504]; /* buffer for temporary strings */ - char output[504]; /* current output line */ + char strings[1024]; /* buffer for temporary strings */ + char output[1024]; /* current output line */ }; static struct debug_info tmp;