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:
parent
45b2bdc907
commit
83fdd6285d
|
@ -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 } } };
|
||||
|
|
Loading…
Reference in New Issue