From ffa4e572eebeb68ddea9e2329b6c198e968941ff Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Wed, 4 Oct 2006 22:45:14 +0100 Subject: [PATCH] user/tests: Cast-qual warnings fix. --- dlls/user/tests/dde.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/user/tests/dde.c b/dlls/user/tests/dde.c index 6a1c2cf2d88..2022e639815 100644 --- a/dlls/user/tests/dde.c +++ b/dlls/user/tests/dde.c @@ -29,8 +29,8 @@ static const WCHAR TEST_DDE_SERVICE[] = {'T','e','s','t','D','D','E','S','e','r','v','i','c','e',0}; -static const char exec_cmdA[] = "ANSI dde command"; -static const WCHAR exec_cmdW[] = {'u','n','i','c','o','d','e',' ','d','d','e',' ','c','o','m','m','a','n','d',0}; +static char exec_cmdA[] = "ANSI dde command"; +static WCHAR exec_cmdW[] = {'u','n','i','c','o','d','e',' ','d','d','e',' ','c','o','m','m','a','n','d',0}; static WNDPROC old_dde_client_wndproc; @@ -220,7 +220,7 @@ static void test_dde_transaction(void) HWND hwnd_client, hwnd_server; CONVINFO info; HDDEDATA hdata; - static const char test_cmd[] = "test dde command"; + static char test_cmd[] = "test dde command"; /* server: unicode, client: ansi */ if (!create_dde_windows(&hwnd_client, &hwnd_server)) return; -- 2.11.4.GIT