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 96b29e3..bf2d79d 100644 --- a/gdb/macrotab.c +++ b/gdb/macrotab.c @@ -893,7 +893,7 @@ fixup_definition (const char *filename, int line, struct macro_definition *def) } else if (def->argc == macro_LINE) { - saved_expansion.reset (xstrprintf ("%d", line)); + saved_expansion = xstrprintf ("%d", line); def->replacement = saved_expansion.get (); } } |