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)
}
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("Couldnt open IOHIDManager.");
ERR("Couldn't open IOHIDManager.");
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