diff options
author | Ben Elliston <bje@au.ibm.com> | 2006-10-24 03:35:49 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2006-10-24 03:35:49 +0000 |
commit | 058a363ddc625e9f83ae0cf7b3bf322be87aafaa (patch) | |
tree | 014119c6eeac1a7b4767edc3e046ac1efb527343 /ld/lexsup.c | |
parent | ede602d7c88efaaccf5c0679e0382298ae989d95 (diff) | |
download | gdb-058a363ddc625e9f83ae0cf7b3bf322be87aafaa.zip gdb-058a363ddc625e9f83ae0cf7b3bf322be87aafaa.tar.gz gdb-058a363ddc625e9f83ae0cf7b3bf322be87aafaa.tar.bz2 |
* lexsup.c (parse_args): Add a comment noting a fall-through.
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r-- | ld/lexsup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c index c4336c4..1d267f4 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -680,6 +680,8 @@ parse_args (unsigned argc, char **argv) { case '?': einfo (_("%P: unrecognized option '%s'\n"), argv[last_optind]); + /* Fall through. */ + default: einfo (_("%P%F: use the --help option for usage information\n")); |