Commit 8860f060 authored by Eric Paris's avatar Eric Paris

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: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarEric Paris <eparis@redhat.com>
parent b2d87909
......@@ -231,7 +231,7 @@ static void remove_access_response(struct fsnotify_group *group,
struct fsnotify_event *event,
__s32 fd)
{
return 0;
return;
}
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment