summaryrefslogtreecommitdiff
path: root/ld/ldemul.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2003-02-28 02:10:06 +0000
committerAlan Modra <amodra@bigpond.net.au>2003-02-28 02:10:06 +0000
commit5feb1aad8bbab1a56c8c559b08a2fe53b130a147 (patch)
treef727e758c59f7b7f63af5632db7b058ce7173328 /ld/ldemul.c
parentf96097236641b56599d4f99f89c7367a72c8fee2 (diff)
downloadbinutils-redhat-5feb1aad8bbab1a56c8c559b08a2fe53b130a147.tar.gz
* ldemul.c (ldemul_parse_args): Return FALSE by default.
* ldemul.h (struct ld_emulation_xfer_struct): Update parse_args comment.
Diffstat (limited to 'ld/ldemul.c')
-rw-r--r--ld/ldemul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ldemul.c b/ld/ldemul.c
index 427e21d1e0..dc087943b9 100644
--- a/ld/ldemul.c
+++ b/ld/ldemul.c
@@ -164,7 +164,7 @@ ldemul_parse_args (argc, argv)
/* Try and use the emulation parser if there is one. */
if (ld_emulation->parse_args)
return (*ld_emulation->parse_args) (argc, argv);
- return TRUE;
+ return FALSE;
}
/* Let the emulation code handle an unrecognized file. */