diff options
Diffstat (limited to 'tools/perf/util/map.c')
-rw-r--r-- | tools/perf/util/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c index 175f1f6b6914..76bdca640a9b 100644 --- a/tools/perf/util/map.c +++ b/tools/perf/util/map.c | |||
@@ -149,7 +149,7 @@ struct symbol *map__find_symbol(struct map *self, u64 addr, | |||
149 | if (!dso__loaded(self->dso, self->type) && map__load(self, filter) < 0) | 149 | if (!dso__loaded(self->dso, self->type) && map__load(self, filter) < 0) |
150 | return NULL; | 150 | return NULL; |
151 | 151 | ||
152 | return self->dso->find_symbol(self->dso, self->type, addr); | 152 | return dso__find_symbol(self->dso, self->type, addr); |
153 | } | 153 | } |
154 | 154 | ||
155 | struct symbol *map__find_symbol_by_name(struct map *self, const char *name, | 155 | struct symbol *map__find_symbol_by_name(struct map *self, const char *name, |