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

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ static void remove_access_response(struct fsnotify_group *group,
				   struct fsnotify_event *event,
				   __s32 fd)
{
	return 0;
	return;
}
#endif