user32: Avoid newlines inside FIXME messages.

Michael Stefaniuc mstefani at redhat.de
Mon Jan 11 16:48:29 CST 2010


This prevents automatic parsing of those messages.
---
 dlls/user32/misc.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
index 1dc2cb8..ca807f0 100644
--- a/dlls/user32/misc.c
+++ b/dlls/user32/misc.c
@@ -539,8 +539,8 @@ DWORD WINAPI RegisterTasklist (DWORD x)
  */
 HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
 {
-    FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
-          "\treturns a fake device notification handle!\n", hnd,notifyfilter,flags );
+    FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
+          hnd,notifyfilter,flags );
     return (HDEVNOTIFY) 0xcafecafe;
 }
 
@@ -569,8 +569,8 @@ HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, D
  */
 HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE hRecepient, LPVOID pNotificationFilter, DWORD dwFlags)
 {
-    FIXME("(hwnd=%p, filter=%p,flags=0x%08x),\n"
-          "\treturns a fake device notification handle!\n", hRecepient,pNotificationFilter,dwFlags );
+    FIXME("(hwnd=%p, filter=%p,flags=0x%08x) returns a fake device notification handle!\n",
+          hRecepient,pNotificationFilter,dwFlags );
     return (HDEVNOTIFY) 0xcafeaffe;
 }
 
-- 
1.6.6



More information about the wine-patches mailing list