From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]:53314 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725952AbeKOKZM (ORCPT ); Thu, 15 Nov 2018 05:25:12 -0500 From: Eric Biggers To: linux-fsdevel@vger.kernel.org, Andrew Morton Cc: Alexey Dobriyan Subject: [PATCH] fs/proc/util.c: include fs/proc/internal.h for name_to_int() Date: Wed, 14 Nov 2018 16:18:33 -0800 Message-Id: <20181115001833.49371-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Eric Biggers name_to_int() is defined in fs/proc/util.c and declared in fs/proc/internal.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 --- fs/proc/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/proc/util.c b/fs/proc/util.c index b161cfa0f9fa1..98f8adc173453 100644 --- a/fs/proc/util.c +++ b/fs/proc/util.c @@ -1,4 +1,5 @@ #include +#include "internal.h" unsigned name_to_int(const struct qstr *qstr) { -- 2.19.1.930.g4563a0d9d0-goog