[PATCH] kbuild: fix wrong warning message in modpost

From: Li Yang
Date: Mon May 14 2007 - 06:03:13 EST


One of the "Section mismatch" warning message in modpost.c
is in wrong format. This patch fix it.

Signed-off-by: Li Yang <leoli@xxxxxxxxxxxxx>
---

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/