serialui/tests: Use the available ARRAY_SIZE() macro.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2018-05-30 21:15:45 +02:00 committed by Alexandre Julliard
parent a49b28cc77
commit 5085f4f9c1
1 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ static void test_drvCommConfigDialogW(void)
/* test ports "com1" - "com4" */ /* test ports "com1" - "com4" */
for (i = 1; i < 5 ; i++) { for (i = 1; i < 5 ; i++) {
sprintf(bufferA, fmt_comA, i); sprintf(bufferA, fmt_comA, i);
MultiByteToWideChar( CP_ACP, 0, bufferA, -1, bufferW, sizeof(bufferW)/sizeof(WCHAR) ); MultiByteToWideChar(CP_ACP, 0, bufferA, -1, bufferW, ARRAY_SIZE(bufferW));
len = sizeof(pCC); len = sizeof(pCC);
ZeroMemory(pCC, sizeof(pCC)); ZeroMemory(pCC, sizeof(pCC));
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);
@ -346,7 +346,7 @@ static void test_drvGetDefaultCommConfigW(void)
/* test ports "com0" - "com10" */ /* test ports "com0" - "com10" */
for (i = 0; i < 11 ; i++) { for (i = 0; i < 11 ; i++) {
sprintf(bufferA, fmt_comA, i); sprintf(bufferA, fmt_comA, i);
MultiByteToWideChar( CP_ACP, 0, bufferA, -1, bufferW, sizeof(bufferW)/sizeof(WCHAR) ); MultiByteToWideChar(CP_ACP, 0, bufferA, -1, bufferW, ARRAY_SIZE(bufferW));
len = sizeof(pCC); len = sizeof(pCC);
ZeroMemory(pCC, sizeof(pCC)); ZeroMemory(pCC, sizeof(pCC));
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);