From 2a6da4ca413a8b77d418110ae87e7e00b6812f80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 15 Jun 2016 17:45:06 +0000 Subject: [PATCH] [APITESTS]: Fix MSVC warning C4114: "same type qualifier used more than once". svn path=/trunk/; revision=71642 --- rostests/apitests/advapi32/RtlEncryptMemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/apitests/advapi32/RtlEncryptMemory.c b/rostests/apitests/advapi32/RtlEncryptMemory.c index 043a074ee0a..7a0b3d3b35f 100644 --- a/rostests/apitests/advapi32/RtlEncryptMemory.c +++ b/rostests/apitests/advapi32/RtlEncryptMemory.c @@ -15,7 +15,7 @@ START_TEST(RtlEncryptMemory) { - static const CHAR const TestData[32] = "This is some test Message!!!"; + static const CHAR TestData[32] = "This is some test Message!!!"; CHAR Buffer[32]; NTSTATUS Status;