1
0
mirror of https://github.com/bobranten/Ext4Fsd.git synced 2025-10-29 13:18:30 -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

View File

@@ -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;
}