From c7c49ab57dd8d1df1cfdf93c97fa9e4c352700f2 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 22 Oct 2020 12:45:59 +0200 Subject: [PATCH] cryptnet/tests: Change the scope of a variable from global to local. Signed-off-by: Michael Stefaniuc Signed-off-by: Alexandre Julliard --- dlls/cryptnet/tests/cryptnet.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/cryptnet/tests/cryptnet.c b/dlls/cryptnet/tests/cryptnet.c index 0b017604c04..3eca9e43f2e 100644 --- a/dlls/cryptnet/tests/cryptnet.c +++ b/dlls/cryptnet/tests/cryptnet.c @@ -99,11 +99,10 @@ static void compareUrlArray(const CRYPT_URL_ARRAY *expected, } } -static WCHAR url[] = - { 'h','t','t','p',':','/','/','w','i','n','e','h','q','.','o','r','g',0 }; static void test_getObjectUrl(void) { + static WCHAR url[] = L"http://winehq.org"; BOOL ret; DWORD urlArraySize = 0, infoSize = 0; PCCERT_CONTEXT cert;