From mboxrd@z Thu Jan 1 00:00:00 1970 From: Axel Lin Subject: [PATCH] fs/binfmt_flat.c: make old_reloc() static Date: Thu, 03 Apr 2014 21:38:42 +0800 Message-ID: <1396532322.15484.1.camel@phoenix> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Alexander Viro , Andrew Morton , linux-fsdevel@vger.kernel.org To: Al Viro Return-path: Received: from mail-pb0-f49.google.com ([209.85.160.49]:34860 "EHLO mail-pb0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752062AbaDCNis (ORCPT ); Thu, 3 Apr 2014 09:38:48 -0400 Received: by mail-pb0-f49.google.com with SMTP id jt11so1858206pbb.36 for ; Thu, 03 Apr 2014 06:38:48 -0700 (PDT) Sender: linux-fsdevel-owner@vger.kernel.org List-ID: old_reloc() is only used in this file, make it static. Signed-off-by: Axel Lin --- fs/binfmt_flat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c index d50bbe5..f723cd3 100644 --- a/fs/binfmt_flat.c +++ b/fs/binfmt_flat.c @@ -380,7 +380,7 @@ failed: /****************************************************************************/ -void old_reloc(unsigned long rl) +static void old_reloc(unsigned long rl) { #ifdef DEBUG char *segment[] = { "TEXT", "DATA", "BSS", "*UNKNOWN*" }; -- 1.8.1.2