From 917634bc8aa80a727aee940fc2e3b8b7eed9458e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 30 Jul 2014 12:18:47 +0200 Subject: [PATCH] Add missing strings to strerror() for hrev46649 --- src/system/libroot/posix/string/strerror.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/system/libroot/posix/string/strerror.c b/src/system/libroot/posix/string/strerror.c index 104a361c6f..5df5163f55 100644 --- a/src/system/libroot/posix/string/strerror.c +++ b/src/system/libroot/posix/string/strerror.c @@ -127,6 +127,10 @@ error_description(int error) return "Missing library"; case B_MISSING_SYMBOL: return "Symbol not found"; + case B_UNKNOWN_EXECUTABLE: + return "Unknown executable format"; + case B_LEGACY_EXECUTABLE: + return "Unsupported legacy executable"; case B_DEBUGGER_ALREADY_INSTALLED: return "Debugger already installed for this team";