From 572c2c273fb70c6e1e7d11aec760775f09283baa Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Tue, 5 Sep 2006 17:04:17 +0100 Subject: [PATCH] crypt32/tests: Cast-qual warning fix. --- dlls/crypt32/tests/oid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/crypt32/tests/oid.c b/dlls/crypt32/tests/oid.c index c5d2689cf8a..0eb68c4ad8a 100644 --- a/dlls/crypt32/tests/oid.c +++ b/dlls/crypt32/tests/oid.c @@ -430,7 +430,7 @@ static void test_enumOIDInfo(void) static void test_findOIDInfo(void) { - static const WCHAR sha1[] = { 's','h','a','1',0 }; + static WCHAR sha1[] = { 's','h','a','1',0 }; static CHAR oid_rsa_md5[] = szOID_RSA_MD5; ALG_ID alg = CALG_SHA1; ALG_ID algs[2] = { CALG_MD5, CALG_RSA_SIGN }; @@ -447,7 +447,7 @@ static void test_findOIDInfo(void) ok(U(*info).Algid == CALG_MD5, "Expected CALG_MD5, got %d\n", U(*info).Algid); } - info = CryptFindOIDInfo(CRYPT_OID_INFO_NAME_KEY, (void *)sha1, 0); + info = CryptFindOIDInfo(CRYPT_OID_INFO_NAME_KEY, sha1, 0); ok(info != NULL, "Expected to find sha1\n"); if (info) {