summaryrefslogtreecommitdiff
path: root/ld/ldfile.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2010-11-21 20:36:24 +0000
committerH.J. Lu <hjl.tools@gmail.com>2010-11-21 20:36:24 +0000
commit0b7555d39bd01b3bdf4eb6cf7228fceb8d06b987 (patch)
tree0bf8e2735ac0f9ee18bfb975729b2d0bac77b975 /ld/ldfile.c
parent32e8950ab3a7085bda2d6f49faf3538f82c42b12 (diff)
downloadbinutils-redhat-0b7555d39bd01b3bdf4eb6cf7228fceb8d06b987.tar.gz
Re-indent plugin code.
2010-11-21 H.J. Lu <hongjiu.lu@intel.com> * ldfile.c: Re-indent plugin code. * ldlang.c: Likewise. * ldmain.c: Likewise. * plugin.c: Likewise.
Diffstat (limited to 'ld/ldfile.c')
-rw-r--r--ld/ldfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ldfile.c b/ld/ldfile.c
index 6364469071..3d9feb5fa1 100644
--- a/ld/ldfile.c
+++ b/ld/ldfile.c
@@ -313,7 +313,7 @@ success:
will be needed when and if we want to bfd_create a new
one using this one as a template. */
if (bfd_check_format (entry->the_bfd, bfd_object)
- && plugin_active_plugins_p ())
+ && plugin_active_plugins_p ())
{
int fd = open (attempt, O_RDONLY | O_BINARY);
if (fd >= 0)
@@ -330,7 +330,7 @@ success:
file.handle = plugin_get_ir_dummy_bfd (attempt, entry->the_bfd);
if (plugin_call_claim_file (&file, &claimed))
einfo (_("%P%F: %s: plugin reported error claiming file\n"),
- plugin_error_plugin ());
+ plugin_error_plugin ());
/* fd belongs to us, not the plugin; but we don't need it. */
close (fd);
if (claimed)
@@ -344,7 +344,7 @@ success:
else
{
/* If plugin didn't claim the file, we don't need the dummy
- bfd. Can't avoid speculatively creating it, alas. */
+ bfd. Can't avoid speculatively creating it, alas. */
bfd_close_all_done (file.handle);
entry->claimed = FALSE;
}