diff options
author | Alan Modra <amodra@gmail.com> | 2019-04-02 16:38:20 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-04-03 12:50:39 +1030 |
commit | 4b24dd1acad5c133d12aab6a575c83269336e47f (patch) | |
tree | 7f1cb99426cf014b2b0070d8c72294c4b503c556 /bfd/plugin.c | |
parent | 49149495dabc2ef54b7cd38a9346a8696b205da7 (diff) | |
download | fsf-binutils-gdb-4b24dd1acad5c133d12aab6a575c83269336e47f.zip fsf-binutils-gdb-4b24dd1acad5c133d12aab6a575c83269336e47f.tar.gz fsf-binutils-gdb-4b24dd1acad5c133d12aab6a575c83269336e47f.tar.bz2 |
BFD whitespace fixes
* coff-i386.c, * coff-x86_64.c, * coffgen.c, * dwarf2.c,
* elf-m10200.c, * elf.c, * elf32-arm.c, * elf32-bfin.c,
* elf32-csky.c, * elf32-m32r.c, * elf32-microblaze.c, * elf32-pru.c,
* elf32-rx.c, * elf32-xgate.c, * elf64-sparc.c, * elfnn-ia64.c,
* elfxx-riscv.c, * elfxx-sparc.c, * linker.c, * mach-o.c,
* pe-x86_64.c, * pei-x86_64.c, * plugin.c: Whitespace fixes.
Diffstat (limited to 'bfd/plugin.c')
-rw-r--r-- | bfd/plugin.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bfd/plugin.c b/bfd/plugin.c index f99c4e1..8cb44ce 100644 --- a/bfd/plugin.c +++ b/bfd/plugin.c @@ -252,14 +252,14 @@ try_load_plugin (const char *pname, bfd *abfd, int *has_plugin_p) plugin_list_iter = plugin_list_iter->next) { if (plugin_handle == plugin_list_iter->handle) - { - dlclose (plugin_handle); - if (!plugin_list_iter->claim_file) - return 0; - - register_claim_file (plugin_list_iter->claim_file); - goto have_claim_file; - } + { + dlclose (plugin_handle); + if (!plugin_list_iter->claim_file) + return 0; + + register_claim_file (plugin_list_iter->claim_file); + goto have_claim_file; + } } plugin_list_iter = (struct plugin_list_entry *) xmalloc (sizeof *plugin_list_iter); |