[crypt32] Cast-qual warnings fix

Paul Vriens Paul.Vriens at xs4all.nl
Thu Oct 5 10:57:26 CDT 2006


Hi,

just some simple ones.

Changelog
  Cast-qual warnings fix

Cheers,

Paul.
---
 dlls/crypt32/tests/protectdata.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/crypt32/tests/protectdata.c b/dlls/crypt32/tests/protectdata.c
index d5d6f1f..8ea0158 100644
--- a/dlls/crypt32/tests/protectdata.c
+++ b/dlls/crypt32/tests/protectdata.c
@@ -27,9 +27,9 @@ #include <wincrypt.h>
 
 #include "wine/test.h"
 
-static const char * secret  = "I am a super secret string that no one can see!";
-static const char * secret2 = "I am a super secret string indescribable string";
-static const char * key = "Wibble wibble wibble";
+static char  secret[]     = "I am a super secret string that no one can see!";
+static char  secret2[]    = "I am a super secret string indescribable string";
+static char  key[]        = "Wibble wibble wibble";
 static const WCHAR desc[] = {'U','l','t','r','a',' ','s','e','c','r','e','t',' ','t','e','s','t',' ','m','e','s','s','a','g','e',0};
 static BOOL protected = FALSE; /* if true, the unprotect tests can run */
 static DATA_BLOB cipher;
-- 
1.4.2.3




More information about the wine-patches mailing list