From: tip-bot for Ingo Molnar on
Commit-ID: 7931241694b25589658b1ceb02218d2750540ae0
Gitweb: http://git.kernel.org/tip/7931241694b25589658b1ceb02218d2750540ae0
Author: Ingo Molnar <mingo(a)elte.hu>
AuthorDate: Thu, 10 Dec 2009 08:43:34 +0100
Committer: Ingo Molnar <mingo(a)elte.hu>
CommitDate: Thu, 10 Dec 2009 08:44:39 +0100

perf kmem: Fix unused argument build warning

Fix:

builtin-kmem.c: In function 'parse_caller_opt':
builtin-kmem.c:690: error: unused parameter 'arg'
builtin-kmem.c: In function 'parse_alloc_opt':
builtin-kmem.c:697: error: unused parameter 'arg'

Cc: Li Zefan <lizf(a)cn.fujitsu.com>
Cc: Pekka Enberg <penberg(a)cs.helsinki.fi>
LKML-Reference: <4B20A195.8030106(a)cn.fujitsu.com>
Signed-off-by: Ingo Molnar <mingo(a)elte.hu>
---
tools/perf/builtin-kmem.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
index 1b04787..5f20951 100644
--- a/tools/perf/builtin-kmem.c
+++ b/tools/perf/builtin-kmem.c
@@ -687,14 +687,14 @@ static int parse_sort_opt(const struct option *opt __used,
}

static int parse_caller_opt(const struct option *opt __used,
- const char *arg, int unset __used)
+ const char *arg __used, int unset __used)
{
caller_flag = (alloc_flag + 1);
return 0;
}

static int parse_alloc_opt(const struct option *opt __used,
- const char *arg, int unset __used)
+ const char *arg __used, int unset __used)
{
alloc_flag = (caller_flag + 1);
return 0;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/