lib: errno: sync error codes
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 6 Oct 2019 11:22:21 +0000 (13:22 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 31 Oct 2019 11:22:53 +0000 (07:22 -0400)
Macro ERRNO_MSG() ignores the error number but we should still use the same
constants as in include/linux/errno.h.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/errno_str.c

index bb8f9fbeb39a950fd5be0a5856774dd05bcbc4cf..2e5f4a887d5b0f1351ba0765b8bbd096d7c7e2e3 100644 (file)
@@ -13,7 +13,7 @@
 static const char * const errno_message[] = {
        ERRNO_MSG(0, "Success"),
        ERRNO_MSG(EPERM, "Operation not permitted"),
-       ERRNO_MSG(ENOEN, "No such file or directory"),
+       ERRNO_MSG(ENOENT, "No such file or directory"),
        ERRNO_MSG(ESRCH, "No such process"),
        ERRNO_MSG(EINTR, "Interrupted system call"),
        ERRNO_MSG(EIO, "I/O error"),
@@ -26,7 +26,7 @@ static const char * const errno_message[] = {
        ERRNO_MSG(ENOMEM, "Out of memory"),
        ERRNO_MSG(EACCES, "Permission denied"),
        ERRNO_MSG(EFAULT, "Bad address"),
-       ERRNO_MSG(ENOTBL, "Block device required"),
+       ERRNO_MSG(ENOTBLK, "Block device required"),
        ERRNO_MSG(EBUSY, "Device or resource busy"),
        ERRNO_MSG(EEXIST, "File exists"),
        ERRNO_MSG(EXDEV, "Cross-device link"),