From fef9849aae6521382d0414eca00034913db73faf Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Wed, 27 May 2020 23:57:48 -0600 Subject: [PATCH] ntdll/tests: Make RtlIpv6AddressToString test data static and constant. Signed-off-by: Alex Henrie Signed-off-by: Alexandre Julliard --- dlls/ntdll/tests/rtl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/tests/rtl.c b/dlls/ntdll/tests/rtl.c index 94c6b582f36..7a62670ea05 100644 --- a/dlls/ntdll/tests/rtl.c +++ b/dlls/ntdll/tests/rtl.c @@ -1711,7 +1711,7 @@ static void test_RtlIpv6AddressToString(void) LPCSTR result; IN6_ADDR ip; DWORD_PTR len; - struct + static const struct { PCSTR address; int ip[8]; @@ -1835,7 +1835,7 @@ static void test_RtlIpv6AddressToStringEx(void) NTSTATUS res; IN6_ADDR ip; ULONG len; - struct + static const struct { PCSTR address; ULONG scopeid; -- 2.11.4.GIT