X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gas%2Fconfig%2Ftc-m68k.c;h=7ef5ff41234aad3b3d18dd83c4a332b13835fe88;hb=3b4dbbbf59aef4308bae6654bdc7968797504a3c;hp=6bff4fb1884c52a10211078b741a345ff9d298f7;hpb=75c1920bb02f09534da55b98277a613b7cb430cc;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/config/tc-m68k.c b/gas/config/tc-m68k.c index 6bff4fb188..7ef5ff4123 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;