mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-18 04:54:52 +00:00
fanotify: do not return 0 in a void function
remove_access_response() is supposed to have a void return, but was returning 0; Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Eric Paris <eparis@redhat.com>
This commit is contained in:
parent
b2d879096a
commit
8860f060e4
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ static void remove_access_response(struct fsnotify_group *group,
|
|||
struct fsnotify_event *event,
|
||||
__s32 fd)
|
||||
{
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue