Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19b70873 authored by Chukun Pan's avatar Chukun Pan
Browse files

exfat: fix build on x86 with 4.19 kernel



This should fix:

balloc.c:325:7: error: implicit declaration of function
'fatal_signal_pending'; did you mean 'mod_timer_pending'?
[-Werror=implicit-function-declaration]
   if (fatal_signal_pending(current)) {
       ^~~~~~~~~~~~~~~~~~~~
       mod_timer_pending
cc1: some warnings being treated as errors

Signed-off-by: default avatarChukun Pan <amadeus@jmu.edu.cn>
parent f104dcf4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
#include <linux/blkdev.h>
#include <linux/slab.h>
#include <linux/buffer_head.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 4, 0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 0)
#include <linux/sched/signal.h>
#endif