From 392b0ff1fcc52c189f131c71ea2a969d1b8c5690 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 16 Feb 2021 22:33:42 +0100 Subject: Okay! --- kernel/features/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/features') diff --git a/kernel/features/proc.c b/kernel/features/proc.c index fdf509c..74fa5d4 100644 --- a/kernel/features/proc.c +++ b/kernel/features/proc.c @@ -341,7 +341,7 @@ s32 procfs_read(const char *path, void *buf, u32 offset, u32 count, struct devic return count; } else if (!memcmp(path, "msg", 4)) { if (stack_empty(p->messages)) { - return 0; // This shouldn't happen + return -1; // This shouldn't happen } else { u8 *msg = stack_pop(p->messages); if (!msg) -- cgit v1.2.3