From 9197f5c3dfbcdf0114d4b795da2be768ceddb35a Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 29 Sep 2006 13:06:22 +0200 Subject: [PATCH] riched20: Tweak a buffer declaration to fix the compilation with Visual C++. --- dlls/riched20/tests/editor.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c index 5e34b92c58d..5dc136edf96 100644 --- a/dlls/riched20/tests/editor.c +++ b/dlls/riched20/tests/editor.c @@ -976,8 +976,7 @@ static void test_EM_SETTEXTEX() static void test_EM_EXLIMITTEXT(void) { int i, selBegin, selEnd, len1, len2; - int BUFSIZE = 1024; - char text[BUFSIZE+1]; + char text[1024 + 1]; int textlimit = 0; /* multiple of 100 */ HWND hwndRichEdit = new_richedit(NULL); @@ -1001,9 +1000,9 @@ static void test_EM_EXLIMITTEXT(void) /* default for WParam = 0 */ ok(65536 == i, "EM_EXLIMITTEXT: expected: %d, actual: %d\n", 65536, i); - textlimit = BUFSIZE; + textlimit = sizeof(text)-1; memset(text, 'W', textlimit); - text[BUFSIZE] = 0; + text[sizeof(text)-1] = 0; SendMessage(hwndRichEdit, EM_EXLIMITTEXT, 0, textlimit); /* maxed out text */ SendMessage(hwndRichEdit, WM_SETTEXT, 0, (LPARAM) text);