Commit 40363a22 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

Also convert a 'smart' quote to a regular quote.
parent d7d84e71
...@@ -175,19 +175,19 @@ static CFMutableDictionaryRef creates_osx_device_match(int usage) ...@@ -175,19 +175,19 @@ static CFMutableDictionaryRef creates_osx_device_match(int usage)
} }
else else
{ {
ERR("CFNumberCreate() failed."); ERR("CFNumberCreate() failed.\n");
return NULL; return NULL;
} }
} }
else else
{ {
ERR("CFNumberCreate failed."); ERR("CFNumberCreate failed.\n");
return NULL; return NULL;
} }
} }
else else
{ {
ERR("CFDictionaryCreateMutable failed."); ERR("CFDictionaryCreateMutable failed.\n");
return NULL; return NULL;
} }
...@@ -205,7 +205,7 @@ static int find_osx_devices(void) ...@@ -205,7 +205,7 @@ static int find_osx_devices(void)
tIOReturn = IOHIDManagerOpen( gIOHIDManagerRef, 0L); tIOReturn = IOHIDManagerOpen( gIOHIDManagerRef, 0L);
if ( kIOReturnSuccess != tIOReturn ) if ( kIOReturnSuccess != tIOReturn )
{ {
ERR("Couldnt open IOHIDManager."); ERR("Couldn't open IOHIDManager.");
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment