kernel32/tests: Added missing comma (Coverity).

This commit is contained in:
Nikolay Sivov 2014-04-15 02:00:05 +04:00 committed by Alexandre Julliard
parent 3cadbbb4b0
commit 00ff2ed81e
1 changed files with 5 additions and 3 deletions

View File

@ -204,17 +204,19 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid)
static const char* curr_expected_modules[] = static const char* curr_expected_modules[] =
{ {
"kernel32_test.exe" "kernel32_test.exe",
"kernel32.dll", "kernel32.dll",
"ntdll.dll", "ntdll.dll"
}; };
static const char* sub_expected_modules[] = static const char* sub_expected_modules[] =
{ {
"kernel32_test.exe", "kernel32_test.exe",
"kernel32.dll", "kernel32.dll",
"shell32.dll", "shell32.dll",
"ntdll.dll", "ntdll.dll"
}; };
#define NUM_OF(x) (sizeof(x) / sizeof(x[0])) #define NUM_OF(x) (sizeof(x) / sizeof(x[0]))
static void test_module(DWORD pid, const char* expected[], unsigned num_expected) static void test_module(DWORD pid, const char* expected[], unsigned num_expected)