Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761904AbXENKDN (ORCPT ); Mon, 14 May 2007 06:03:13 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759865AbXENKC6 (ORCPT ); Mon, 14 May 2007 06:02:58 -0400 Received: from az33egw01.freescale.net ([192.88.158.102]:45598 "EHLO az33egw01.freescale.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755583AbXENKC5 (ORCPT ); Mon, 14 May 2007 06:02:57 -0400 Message-ID: <4648342C.3020208@freescale.com> Date: Mon, 14 May 2007 18:04:28 +0800 From: Li Yang User-Agent: Thunderbird 1.5.0.4 (Windows/20060516) MIME-Version: 1.0 To: Linus , Andrew Morton CC: Linux Kernel , Sam Ravnborg Subject: [PATCH] kbuild: fix wrong warning message in modpost Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 14 May 2007 10:02:43.0104 (UTC) FILETIME=[03848200:01C7960F] Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 950 Lines: 28 One of the "Section mismatch" warning message in modpost.c is in wrong format. This patch fix it. Signed-off-by: Li Yang --- scripts/mod/modpost.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 113dc77..c89cb71 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -906,7 +906,7 @@ static void warn_sec_mismatch(const char *modname, const char *fromsec, } else { warn("%s - Section mismatch: reference to %s:%s from %s " "(offset 0x%llx)\n", - modname, secname, fromsec, refsymname, + modname, secname, refsymname, fromsec, (long long)r.r_offset); } } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/