From 0a3a85eee41c057e5649595ba37c59b7355008a3 Mon Sep 17 00:00:00 2001 From: Vincent Franchomme Date: Sat, 2 Nov 2024 17:36:48 +0100 Subject: [PATCH] Add missing return type to cond_resched and need_resched --- Ext4Fsd/include/linux/module.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ext4Fsd/include/linux/module.h b/Ext4Fsd/include/linux/module.h index f1efa85..1c3ff8b 100644 --- a/Ext4Fsd/include/linux/module.h +++ b/Ext4Fsd/include/linux/module.h @@ -438,10 +438,10 @@ extern struct task_struct *current; // -static inline cond_resched() { +static inline int cond_resched() { return FALSE; } -static inline need_resched() { +static inline int need_resched() { return FALSE; }