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:
Eric Paris 2009-12-23 00:10:25 -05:00
Родитель b2d879096a
Коммит 8860f060e4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -231,7 +231,7 @@ static void remove_access_response(struct fsnotify_group *group,
struct fsnotify_event *event, struct fsnotify_event *event,
__s32 fd) __s32 fd)
{ {
return 0; return;
} }
#endif #endif