diff options
Diffstat (limited to 'gas/config/tc-m68k.c')
-rw-r--r-- | gas/config/tc-m68k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 6bff4fb..7ef5ff4 100644 --- a/gas/config/tc-m68k.c +++ b/gas/config/tc-m68k.c @@ -122,7 +122,7 @@ struct label_line { struct label_line *next; symbolS *label; - char *file; + const char *file; unsigned int line; int text; }; @@ -4792,7 +4792,7 @@ m68k_frob_label (symbolS *sym) n = (struct label_line *) xmalloc (sizeof *n); n->next = labels; n->label = sym; - as_where (&n->file, &n->line); + n->file = as_where (&n->line); n->text = 0; labels = n; current_label = n; |