From 90b544f75fc74f234b23f0cf5000d7c63d47f826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sat, 2 Nov 2002 02:52:56 +0000 Subject: [PATCH] Forgot to remove the const from the strerror implementation. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1824 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/string/strerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/libroot/posix/string/strerror.c b/src/kernel/libroot/posix/string/strerror.c index 23d8c90e2b..80e571a9da 100644 --- a/src/kernel/libroot/posix/string/strerror.c +++ b/src/kernel/libroot/posix/string/strerror.c @@ -9,7 +9,7 @@ #include -char const * +char * strerror(int errnum) { switch (errnum) {