From 45a9df836accd39cf2dbfbb2453496b0e4d93fa5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 8 Jan 2021 22:49:54 +0100 Subject: Major IDE/ATA driver rewrite This adds non-hardcoded multi-disk support. I just need to remove the boot/load.c loader and fix the max bootloader ext2 loading size. After that's done I'll try running it on real hardware. --- libc/inc/sys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc') diff --git a/libc/inc/sys.h b/libc/inc/sys.h index 4a1d1e0..3145432 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -113,7 +113,7 @@ static inline struct message *msg_receive_loop() static inline void *sread(const char *path) { struct stat s = { 0 }; - if (!stat(path, &s) || !s.size) + if (stat(path, &s) != 0 || !s.size) return NULL; void *buf = malloc(s.size); read(path, buf, 0, s.size); -- cgit v1.2.3