diff options
author | Alan Modra <amodra@gmail.com> | 2003-02-28 02:10:06 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-02-28 02:10:06 +0000 |
commit | 3aa97c588690b3606d2585733eda7e300a7d4272 (patch) | |
tree | cfa38a3009b5c4a107cb704a5b131e0e2d1e723a /ld/ldemul.c | |
parent | 3bcf55573d377355c73846cc0b819c7d878d8e19 (diff) | |
download | gdb-3aa97c588690b3606d2585733eda7e300a7d4272.zip gdb-3aa97c588690b3606d2585733eda7e300a7d4272.tar.gz gdb-3aa97c588690b3606d2585733eda7e300a7d4272.tar.bz2 |
* 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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ldemul.c b/ld/ldemul.c index 427e21d..dc08794 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. */ |