From 058a363ddc625e9f83ae0cf7b3bf322be87aafaa Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 24 Oct 2006 03:35:49 +0000 Subject: [PATCH] * lexsup.c (parse_args): Add a comment noting a fall-through. --- ld/ChangeLog | 4 ++++ ld/lexsup.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index b388bcee469..15a994a9802 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2006-10-24 Ben Elliston + + * lexsup.c (parse_args): Add a comment noting a fall-through. + 2006-10-24 H.J. Lu * configure.in (AC_CHECK_HEADERS): Add limits.h and sys/param.h. diff --git a/ld/lexsup.c b/ld/lexsup.c index c4336c45be5..1d267f40e1f 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")); -- 2.30.2