diff options
Diffstat (limited to 'kern/error.c')
-rw-r--r-- | kern/error.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/error.c b/kern/error.c index a24c5db6..83aef26a 100644 --- a/kern/error.c +++ b/kern/error.c @@ -42,6 +42,8 @@ error_str(int error) return "Input/output error"; case ERROR_SRCH: return "no such process"; + case ERROR_TIMEDOUT: + return "timeout error"; default: return "unknown error"; } |