1
0
mirror of https://github.com/bobranten/Ext4Fsd.git synced 2026-05-21 21:30:40 -05:00

Add missing return type to cond_resched and need_resched

This commit is contained in:
Vincent Franchomme
2024-11-02 17:36:48 +01:00
parent eb1bd67be2
commit 0a3a85eee4
+2 -2
View File
@@ -438,10 +438,10 @@ extern struct task_struct *current;
// //
static inline cond_resched() { static inline int cond_resched() {
return FALSE; return FALSE;
} }
static inline need_resched() { static inline int need_resched() {
return FALSE; return FALSE;
} }