From 390858943d9e9e40283bda3b038faa592083450f Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Sat, 18 Feb 2012 11:55:45 +0000 Subject: [PATCH] * ldmisc.c (vfinfo <%S>): Use same type and avoid cast for temporary variable node used for NULL argument. --- ld/ChangeLog | 5 +++++ ld/ldmisc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 4df7514093..f5db339d14 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2012-02-18 Hans-Peter Nilsson + + * ldmisc.c (vfinfo <%S>): Use same type and avoid cast for + temporary variable node used for NULL argument. + 2012-02-18 Alan Modra PR ld/13343 diff --git a/ld/ldmisc.c b/ld/ldmisc.c index 21e6f4f84a..5112c716a4 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; } -- 2.34.1