diff options
Diffstat (limited to 'gdb/macrotab.c')
-rw-r--r-- | gdb/macrotab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/macrotab.c b/gdb/macrotab.c index e65e5dc8425..6154362dbc6 100644 --- a/gdb/macrotab.c +++ b/gdb/macrotab.c @@ -128,7 +128,7 @@ macro_bcache (struct macro_table *t, const void *addr, int len) static const char * macro_bcache_str (struct macro_table *t, const char *s) { - return (char *) macro_bcache (t, s, strlen (s) + 1); + return macro_bcache (t, s, strlen (s) + 1); } |