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

Also convert a 'smart' quote to a regular quote.
This commit is contained in:
Francois Gouget 2009-03-12 10:10:44 +01:00 committed by Alexandre Julliard
parent d7d84e71d3
commit 40363a223c
1 changed files with 4 additions and 4 deletions

View File

@ -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;
}