Module: wine Branch: master Commit: 5c898585390eb0a3e2037ae326ccaeaa8c24cdde URL: http://source.winehq.org/git/wine.git/?a=commit;h=5c898585390eb0a3e2037ae326...
Author: Paul Vriens Paul.Vriens@xs4all.nl Date: Thu Oct 5 17:57:26 2006 +0200
crypt32: Cast-qual warnings fix.
---
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;