From 65b2278e9a350ad2760cfbea6650db8bf245e5cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Wed, 30 Jul 2014 12:23:35 +0200 Subject: [PATCH] How come we missed the case B_DONT_DO_THAT in strerror() ??? --- src/system/libroot/posix/string/strerror.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/libroot/posix/string/strerror.c b/src/system/libroot/posix/string/strerror.c index 5df5163f55..8f464eb69d 100644 --- a/src/system/libroot/posix/string/strerror.c +++ b/src/system/libroot/posix/string/strerror.c @@ -91,6 +91,8 @@ error_description(int error) return "Operation not allowed"; case B_BAD_DATA: return "Bad data"; + case B_DONT_DO_THAT: + return "No, really, don't do that"; // Kernel Kit Errors