diff options
Diffstat (limited to 'ld/ldmisc.c')
-rw-r--r-- | ld/ldmisc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/ldmisc.c b/ld/ldmisc.c index 21e6f4f8..5112c71 100644 --- a/ld/ldmisc.c +++ b/ld/ldmisc.c @@ -241,12 +241,12 @@ vfinfo (FILE *fp, const char *fmt, va_list arg, bfd_boolean is_warning) case 'S': /* Print script file and linenumber. */ { - node_type node; + etree_type node; etree_type *tp = va_arg (arg, etree_type *); if (tp == NULL) { - tp = (etree_type *) &node; + tp = &node; tp->type.filename = ldlex_filename (); tp->type.lineno = lineno; } |