Move '\n' to the right place

Francois Gouget fgouget at free.fr
Sat Jan 17 18:05:21 CST 2004


Changelog:

 * dlls/user/tests/input.c

   Add trailing '\n's to ok() calls.


Index: dlls/user/tests/input.c
===================================================================
RCS file: /home/cvs/wine/dlls/user/tests/input.c,v
retrieving revision 1.3
diff -u -r1.3 input.c
--- dlls/user/tests/input.c	16 Jan 2004 02:02:38 -0000	1.3
+++ dlls/user/tests/input.c	18 Jan 2004 00:03:51 -0000
@@ -234,14 +234,14 @@
                     msg.wParam == expmsg[i].wParam &&
                     msg.lParam == expmsg[i].lParam,
                     "wrong message! expected:\n"
-                    "message[%d] %-15s wParam %04x lParam %08lx",i,
+                    "message[%d] %-15s wParam %04x lParam %08lx\n",i,
                     MSGNAME[(expmsg[i]).message - WM_KEYFIRST],
                     expmsg[i].wParam, expmsg[i].lParam );
         }
         i++;
     }
     trace("%d messages retrieved\n", i);
-    ok( i == kmctr, "message count is wrong: got %d expected: %d", i, kmctr);
+    ok( i == kmctr, "message count is wrong: got %d expected: %d\n", i, kmctr);
 }

 /* test all combinations of the specified key events */


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
           Cahn's Axiom: When all else fails, read the instructions.



More information about the wine-patches mailing list