[PATCH] perf tools: Fix a compiling error in probe-event.c for 32 bits machine

From: He Kuang
Date: Tue Mar 17 2015 - 07:57:27 EST


On 32 bits machine, there is a compile error:

CC util/probe-event.o
util/probe-event.c: In function 'find_alternative_probe_point':
util/probe-event.c:320:2: error: format '%lx' expects argument of type 'long unsigned int', but argument 5 has type 'u64' [-Werror=format]
cc1: all warnings being treated as errors
make[3]: *** [util/probe-event.o] Error 1

Fix it by using the PRIx64 for u64.

Signed-off-by: He Kuang <hekuang@xxxxxxxxxx>
---
tools/perf/util/probe-event.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c
index f272a71..c5e1338 100644
--- a/tools/perf/util/probe-event.c
+++ b/tools/perf/util/probe-event.c
@@ -317,7 +317,7 @@ static int find_alternative_probe_point(struct debuginfo *dinfo,
ret = -ENOENT;
goto out;
}
- pr_debug("Symbol %s address found : %lx\n", pp->function, address);
+ pr_debug("Symbol %s address found : %" PRIx64 "\n", pp->function, address);

ret = debuginfo__find_probe_point(dinfo, (unsigned long)address,
result);
--
2.2.0.33.gc18b867

--
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/