From 32fbfea47ab20e2d6030f58ca9dc92700c0e6190 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Mon, 8 Jan 2007 20:59:08 +0100 Subject: [PATCH] ole32/tests: Cast-qual warnings fixes. --- dlls/ole32/tests/stg_prop.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dlls/ole32/tests/stg_prop.c b/dlls/ole32/tests/stg_prop.c index b25ebd53a34..06a4b2b8479 100644 --- a/dlls/ole32/tests/stg_prop.c +++ b/dlls/ole32/tests/stg_prop.c @@ -46,8 +46,8 @@ static void testProps(void) { static const WCHAR szDot[] = { '.',0 }; static const WCHAR szPrefix[] = { 's','t','g',0 }; - static const WCHAR propName[] = { 'p','r','o','p',0 }; - static const char val[] = "l33t auth0r"; + static WCHAR propName[] = { 'p','r','o','p',0 }; + static char val[] = "l33t auth0r"; WCHAR filename[MAX_PATH]; HRESULT hr; IStorage *storage = NULL; @@ -131,7 +131,7 @@ static void testProps(void) spec.ulKind = PRSPEC_PROPID; U(spec).propid = PIDSI_AUTHOR; var.vt = VT_LPSTR; - U(var).pszVal = (LPSTR)val; + U(var).pszVal = val; hr = IPropertyStorage_WriteMultiple(propertyStorage, 1, &spec, &var, 0); ok(hr == S_OK, "WriteMultiple failed: 0x%08x\n", hr); @@ -293,7 +293,7 @@ static void testCodepage(void) static const WCHAR szDot[] = { '.',0 }; static const WCHAR szPrefix[] = { 's','t','g',0 }; static CHAR aval[] = "hi"; - static const WCHAR wval[] = { 'h','i',0 }; + static WCHAR wval[] = { 'h','i',0 }; HRESULT hr; IStorage *storage = NULL; IPropertySetStorage *propSetStorage = NULL; @@ -422,7 +422,7 @@ static void testCodepage(void) * obviously something about string conversion I don't understand. */ if(0) { - static const unsigned char strVal[] = { 0x81, 0xff, 0x04, 0 }; + static unsigned char strVal[] = { 0x81, 0xff, 0x04, 0 }; /* Set code page to 950 (Traditional Chinese) */ U(var).iVal = 950; hr = IPropertyStorage_WriteMultiple(propertyStorage, 1, &spec, &var, 0);