summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/error.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/kern/error.c b/kern/error.c
index 83aef26a..110c8042 100644
--- a/kern/error.c
+++ b/kern/error.c
@@ -33,13 +33,13 @@ error_str(int error)
case ERROR_BUSY:
return "device or resource busy";
case ERROR_FAULT:
- return "Bad address";
+ return "bad address";
case ERROR_NODEV:
- return "No such device";
+ return "no such device";
case ERROR_EXIST:
- return "Entry exists";
+ return "entry exists";
case ERROR_IO:
- return "Input/output error";
+ return "input/output error";
case ERROR_SRCH:
return "no such process";
case ERROR_TIMEDOUT: