diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index abbabec9720a..f5dfe0ca34f6 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c | |||
@@ -436,7 +436,7 @@ char *symbol_string(char *buf, char *end, void *ptr, | |||
436 | else if (ext != 'f' && ext != 's') | 436 | else if (ext != 'f' && ext != 's') |
437 | sprint_symbol(sym, value); | 437 | sprint_symbol(sym, value); |
438 | else | 438 | else |
439 | kallsyms_lookup(value, NULL, NULL, NULL, sym); | 439 | sprint_symbol_no_offset(sym, value); |
440 | 440 | ||
441 | return string(buf, end, sym, spec); | 441 | return string(buf, end, sym, spec); |
442 | #else | 442 | #else |