From: Eric Biggers Date: Thu, 15 Nov 2018 00:12:14 +0000 (-0800) Subject: fsnotify/fdinfo: include fdinfo.h for inotify_show_fdinfo() X-Git-Tag: for-4.21~6^2~2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d6f7aa9820f21a879af8ceda17b2ebd1cf4beb25;p=uclinux-h8%2Flinux.git fsnotify/fdinfo: include fdinfo.h for inotify_show_fdinfo() inotify_show_fdinfo() is defined in fs/notify/fdinfo.c and declared in fs/notify/fdinfo.h, but the declaration isn't included at the point of the definition. Include the header to enforce that the definition matches the declaration. This addresses a gcc warning when -Wmissing-prototypes is enabled. Signed-off-by: Eric Biggers Signed-off-by: Jan Kara --- diff --git a/fs/notify/fdinfo.c b/fs/notify/fdinfo.c index 348a184bcdda..1e2bfd26b352 100644 --- a/fs/notify/fdinfo.c +++ b/fs/notify/fdinfo.c @@ -15,6 +15,7 @@ #include #include "inotify/inotify.h" +#include "fdinfo.h" #include "fsnotify.h" #if defined(CONFIG_PROC_FS)