diff options
author | Eric Paris <eparis@redhat.com> | 2009-12-23 00:10:25 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-07-28 09:59:02 -0400 |
commit | 8860f060e473dce1a0873d92105d536f72b05908 (patch) | |
tree | 38f3d1f49a921ba28fec88d1046acbf2207bd831 /fs | |
parent | b2d879096ac799722e6017ee82c0586f0d101c9c (diff) | |
download | talos-obmc-linux-8860f060e473dce1a0873d92105d536f72b05908.tar.gz talos-obmc-linux-8860f060e473dce1a0873d92105d536f72b05908.zip |
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>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 87f0be852f71..7c869fa23ec6 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c @@ -231,7 +231,7 @@ static void remove_access_response(struct fsnotify_group *group, struct fsnotify_event *event, __s32 fd) { - return 0; + return; } #endif |