dnsapi/tests: Use wide-char string literals.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-12-09 00:33:57 +01:00 committed by Alexandre Julliard
parent 45b2bdc907
commit 83fdd6285d
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@
#include "wine/test.h"
static WCHAR name1[] = {'l','o','c','a','l','h','o','s','t',0};
static WCHAR name2[] = {'L','O','C','A','L','H','O','S','T',0};
static WCHAR name1[] = L"localhost";
static WCHAR name2[] = L"LOCALHOST";
static DNS_RECORDW r1 = { NULL, name1, DNS_TYPE_A, sizeof(DNS_A_DATA), { 0 }, 1200, 0, { { 0xffffffff } } };
static DNS_RECORDW r2 = { NULL, name1, DNS_TYPE_A, sizeof(DNS_A_DATA), { 0 }, 1200, 0, { { 0xffffffff } } };