XQuartz: Use strerror(errno)... cause I like text more than grepping header files

This commit is contained in:
Jeremy Huddleston 2008-04-17 11:06:54 -07:00
parent 57bb073209
commit 1b4c37d8f9

View File

@ -438,13 +438,13 @@ static Bool DarwinReadKeymapFile(NXKeyMapping *keyMap) {
fref = fopen( darwinKeymapFile, "rb" ); fref = fopen( darwinKeymapFile, "rb" );
if (fref == NULL) { if (fref == NULL) {
ErrorF("Unable to open keymapping file '%s' (errno %d).\n", ErrorF("Unable to open keymapping file '%s': %s.\n",
darwinKeymapFile, errno); darwinKeymapFile, strerror(errno));
return FALSE; return FALSE;
} }
if (fstat(fileno(fref), &st) == -1) { if (fstat(fileno(fref), &st) == -1) {
ErrorF("Could not stat keymapping file '%s' (errno %d).\n", ErrorF("Could not stat keymapping file '%s': %s.\n",
darwinKeymapFile, errno); darwinKeymapFile, strerror(errno));
return FALSE; return FALSE;
} }
@ -458,8 +458,8 @@ static Bool DarwinReadKeymapFile(NXKeyMapping *keyMap) {
inBuffer = (char*) xalloc( st.st_size ); inBuffer = (char*) xalloc( st.st_size );
bufferEnd = (int *) (inBuffer + st.st_size); bufferEnd = (int *) (inBuffer + st.st_size);
if (fread(inBuffer, st.st_size, 1, fref) != 1) { if (fread(inBuffer, st.st_size, 1, fref) != 1) {
ErrorF("Could not read %qd bytes from keymapping file '%s' (errno %d).\n", ErrorF("Could not read %qd bytes from keymapping file '%s': %s.\n",
st.st_size, darwinKeymapFile, errno); st.st_size, darwinKeymapFile, strerror(errno));
return FALSE; return FALSE;
} }