diff options
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/ldmisc.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 618ae81..43e4992 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2017-02-15 Maciej W. Rozycki <macro@imgtec.com> + + * ldmisc.c (vfinfo) <'H'>: Remove static NULL initializers. + 2017-02-15 Igor Kudrin <ikudrin@accesssoftek.com> * testsuite/ld-scripts/sysroot-prefix.exp diff --git a/ld/ldmisc.c b/ld/ldmisc.c index 904a23d..b50637d 100644 --- a/ld/ldmisc.c +++ b/ld/ldmisc.c @@ -280,8 +280,8 @@ vfinfo (FILE *fp, const char *fmt, va_list arg, bfd_boolean is_warning) The arguments are a BFD, a section, and an offset. */ { static bfd *last_bfd; - static char *last_file = NULL; - static char *last_function = NULL; + static char *last_file; + static char *last_function; bfd *abfd; asection *section; bfd_vma offset; |