Francois Gouget : dinput: Add a trailing '\n' to ERR() messages.

Alexandre Julliard julliard at winehq.org
Thu Mar 12 09:54:34 CDT 2009


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Mar 12 10:10:44 2009 +0100

dinput: Add a trailing '\n' to ERR() messages.

Also convert a 'smart' quote to a regular quote.

---

 dlls/dinput/joystick_osx.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/dinput/joystick_osx.c b/dlls/dinput/joystick_osx.c
index b44896c..21f8ca3 100644
--- a/dlls/dinput/joystick_osx.c
+++ b/dlls/dinput/joystick_osx.c
@@ -175,19 +175,19 @@ static CFMutableDictionaryRef creates_osx_device_match(int usage)
             }
             else
             {
-                ERR("CFNumberCreate() failed.");
+                ERR("CFNumberCreate() failed.\n");
                 return NULL;
             }
         }
         else
         {
-            ERR("CFNumberCreate failed.");
+            ERR("CFNumberCreate failed.\n");
             return NULL;
         }
     }
     else
     {
-        ERR("CFDictionaryCreateMutable failed.");
+        ERR("CFDictionaryCreateMutable failed.\n");
         return NULL;
     }
 
@@ -205,7 +205,7 @@ static int find_osx_devices(void)
     tIOReturn = IOHIDManagerOpen( gIOHIDManagerRef, 0L);
     if ( kIOReturnSuccess != tIOReturn )
     {
-        ERR("Couldn’t open IOHIDManager.");
+        ERR("Couldn't open IOHIDManager.");
         return 0;
     }
 




More information about the wine-cvs mailing list