Author: hbelusca
Date: Wed Jun 15 17:45:06 2016
New Revision: 71642

URL: http://svn.reactos.org/svn/reactos?rev=71642&view=rev
Log:
[APITESTS]: Fix MSVC warning C4114: "same type qualifier used more than once".

Modified:
    trunk/rostests/apitests/advapi32/RtlEncryptMemory.c

Modified: trunk/rostests/apitests/advapi32/RtlEncryptMemory.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/advapi32/RtlEncryptMemory.c?rev=71642&r1=71641&r2=71642&view=diff
==============================================================================
--- trunk/rostests/apitests/advapi32/RtlEncryptMemory.c [iso-8859-1] (original)
+++ trunk/rostests/apitests/advapi32/RtlEncryptMemory.c [iso-8859-1] Wed Jun 15 
17:45:06 2016
@@ -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;
 


Reply via email to