Nikolay Sivov : kernel32/tests: Added missing comma (Coverity).

Alexandre Julliard julliard at winehq.org
Tue Apr 15 14:50:32 CDT 2014


Module: wine
Branch: master
Commit: 00ff2ed81e13d289641b1ba2c2ac7d2067877287
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=00ff2ed81e13d289641b1ba2c2ac7d2067877287

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue Apr 15 02:00:05 2014 +0400

kernel32/tests: Added missing comma (Coverity).

---

 dlls/kernel32/tests/toolhelp.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dlls/kernel32/tests/toolhelp.c b/dlls/kernel32/tests/toolhelp.c
index af67688..ed76c9c 100644
--- a/dlls/kernel32/tests/toolhelp.c
+++ b/dlls/kernel32/tests/toolhelp.c
@@ -204,17 +204,19 @@ static void test_thread(DWORD curr_pid, DWORD sub_pcs_pid)
 
 static const char* curr_expected_modules[] =
 {
-    "kernel32_test.exe"
+    "kernel32_test.exe",
     "kernel32.dll",
-    "ntdll.dll",
+    "ntdll.dll"
 };
+
 static const char* sub_expected_modules[] =
 {
     "kernel32_test.exe",
     "kernel32.dll",
     "shell32.dll",
-    "ntdll.dll",
+    "ntdll.dll"
 };
+
 #define NUM_OF(x) (sizeof(x) / sizeof(x[0]))
 
 static void test_module(DWORD pid, const char* expected[], unsigned num_expected)




More information about the wine-cvs mailing list