>From 1bdc8c22f59d44fcb7be2e735b4758e6d4b2dd8a Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 18 Nov 2017 08:39:33 -0800 Subject: [PATCH 1/5] Fix typo caught by GCC 7.2.1 * lib/wordsplit.c (wordsplit_perror): Add missing "break;". --- lib/wordsplit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/wordsplit.c b/lib/wordsplit.c index 07d0f8a..f2ecada 100644 --- a/lib/wordsplit.c +++ b/lib/wordsplit.c @@ -1584,6 +1584,7 @@ wordsplit_perror (struct wordsplit *wsp) case WRDSE_NOSUPP: wsp->ws_error (_("command substitution is not yet supported")); + break; case WRDSE_USAGE: wsp->ws_error (_("invalid wordsplit usage")); -- 2.14.3