Paul Vriens : crypt32: Cast-qual warnings fix.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Sep 20 05:33:34 CDT 2006


Module: wine
Branch: master
Commit: 1059f697f05ece0251437d9ba43560e8968e82e8
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=1059f697f05ece0251437d9ba43560e8968e82e8

Author: Paul Vriens <Paul.Vriens at xs4all.nl>
Date:   Sat Sep 16 16:56:18 2006 +0200

crypt32: Cast-qual warnings fix.

---

 dlls/crypt32/tests/str.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dlls/crypt32/tests/str.c b/dlls/crypt32/tests/str.c
index 25e7749..6e273c5 100644
--- a/dlls/crypt32/tests/str.c
+++ b/dlls/crypt32/tests/str.c
@@ -45,18 +45,18 @@ typedef struct _CertRDNAttrEncodingW {
     LPCWSTR str;
 } CertRDNAttrEncodingW, *PCertRDNAttrEncodingW;
 
-static const BYTE bin1[] = { 0x55, 0x53 };
-static const BYTE bin2[] = { 0x4d, 0x69, 0x6e, 0x6e, 0x65, 0x73, 0x6f, 0x74,
+static BYTE bin1[] = { 0x55, 0x53 };
+static BYTE bin2[] = { 0x4d, 0x69, 0x6e, 0x6e, 0x65, 0x73, 0x6f, 0x74,
  0x61 };
-static const BYTE bin3[] = { 0x4d, 0x69, 0x6e, 0x6e, 0x65, 0x61, 0x70, 0x6f,
+static BYTE bin3[] = { 0x4d, 0x69, 0x6e, 0x6e, 0x65, 0x61, 0x70, 0x6f,
  0x6c, 0x69, 0x73 };
-static const BYTE bin4[] = { 0x43, 0x6f, 0x64, 0x65, 0x57, 0x65, 0x61, 0x76,
+static BYTE bin4[] = { 0x43, 0x6f, 0x64, 0x65, 0x57, 0x65, 0x61, 0x76,
  0x65, 0x72, 0x73 };
-static const BYTE bin5[] = { 0x57, 0x69, 0x6e, 0x65, 0x20, 0x44, 0x65, 0x76,
+static BYTE bin5[] = { 0x57, 0x69, 0x6e, 0x65, 0x20, 0x44, 0x65, 0x76,
  0x65, 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74 };
-static const BYTE bin6[] = { 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x68, 0x6f, 0x73,
+static BYTE bin6[] = { 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x68, 0x6f, 0x73,
  0x74 };
-static const BYTE bin7[] = { 0x61, 0x72, 0x69, 0x63, 0x40, 0x63, 0x6f, 0x64,
+static BYTE bin7[] = { 0x61, 0x72, 0x69, 0x63, 0x40, 0x63, 0x6f, 0x64,
  0x65, 0x77, 0x65, 0x61, 0x76, 0x65, 0x72, 0x73, 0x2e, 0x63, 0x6f, 0x6d };
 
 static const BYTE cert[] = 




More information about the wine-cvs mailing list