summaryrefslogtreecommitdiff
path: root/tools/perf
diff options
context:
space:
mode:
authorDima Kogan <dima@secretsauce.net>2015-09-08 00:30:28 (GMT)
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-10-28 13:02:00 (GMT)
commitf2f3096888569ff1fc15fa0187a39eef3a24b28e (patch)
treeebe8c21cb5ac1339d9482845aaa48d6ae758821e /tools/perf
parentf4efcce33d2e5224a905369f9906f3931f5d907c (diff)
downloadlinux-f2f3096888569ff1fc15fa0187a39eef3a24b28e.tar.xz
perf symbols: Fix type error when reading a build-id
This was benign, but wrong. The build-id should live in a char[], not a char*[] Signed-off-by: Dima Kogan <dima@secretsauce.net> Link: http://lkml.kernel.org/r/87si6pfwz4.fsf@secretsauce.net Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/util/symbol-minimal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/symbol-minimal.c b/tools/perf/util/symbol-minimal.c
index fd8477c..4890633 100644
--- a/tools/perf/util/symbol-minimal.c
+++ b/tools/perf/util/symbol-minimal.c
@@ -337,7 +337,7 @@ int dso__load_sym(struct dso *dso, struct map *map __maybe_unused,
symbol_filter_t filter __maybe_unused,
int kmodule __maybe_unused)
{
- unsigned char *build_id[BUILD_ID_SIZE];
+ unsigned char build_id[BUILD_ID_SIZE];
int ret;
ret = fd__is_64_bit(ss->fd);