diff options
author | Alan Modra <amodra@gmail.com> | 2007-02-21 02:48:22 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-02-21 02:48:22 +0000 |
commit | 788594688132bc8f503e1b1345006e321a19c09a (patch) | |
tree | b379ec7350d6620cccc43e2af55357e7a7114629 /bfd | |
parent | 690185ca9298d6d0567d4697dc1658641a560c23 (diff) | |
download | gdb-788594688132bc8f503e1b1345006e321a19c09a.zip gdb-788594688132bc8f503e1b1345006e321a19c09a.tar.gz gdb-788594688132bc8f503e1b1345006e321a19c09a.tar.bz2 |
* elf32-spu.c (spu_elf_size_stubs): Correct order of warning args.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf32-spu.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 05b1670..f1d2ed7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2007-02-21 Alan Modra <amodra@bigpond.net.au> + + * elf32-spu.c (spu_elf_size_stubs): Correct order of warning args. + 2007-02-19 Thiemo Seufer <ths@mips.com> * elfxx-mips.c (_bfd_mips_elf_print_private_bfd_data): Remove diff --git a/bfd/elf32-spu.c b/bfd/elf32-spu.c index 5d0c0f7..978792b 100644 --- a/bfd/elf32-spu.c +++ b/bfd/elf32-spu.c @@ -1,6 +1,6 @@ /* SPU specific support for 32-bit ELF - Copyright 2006 Free Software Foundation, Inc. + Copyright 2006, 2007 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -871,7 +871,7 @@ spu_elf_size_stubs (bfd *output_bfd, (*_bfd_error_handler) (_("warning: call to non-function" " symbol %s defined in %B"), - sym_name, sym_sec->owner); + sym_sec->owner, sym_name); } else continue; |