diff options
-rw-r--r-- | src/fileio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/fileio.c b/src/fileio.c index f46ffef0ad9..c462c27b97d 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -137,10 +137,7 @@ report_file_error (string, data) { Lisp_Object errstring; - if (errno >= 0 && errno < sys_nerr) - errstring = build_string (sys_errlist[errno]); - else - errstring = build_string ("undocumented error code"); + errstring = build_string (strerror (errno)); /* System error messages are capitalized. Downcase the initial unless it is followed by a slash. */ |