diff --git a/src/system/libroot/posix/string/strerror.c b/src/system/libroot/posix/string/strerror.c index fbb95efa46..fb4fb977ac 100644 --- a/src/system/libroot/posix/string/strerror.c +++ b/src/system/libroot/posix/string/strerror.c @@ -42,12 +42,12 @@ error_description(int error) // General Errors case B_NO_ERROR: - case B_POSIX_ENOMEM: return "No error"; case B_ERROR: return "General system error"; case B_NO_MEMORY: + case B_POSIX_ENOMEM: // ENOMEM return "Out of memory"; case B_IO_ERROR: