From 35008b75e4b01086ff82fc072b4d79df194927cb Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 18 Nov 2017 08:39:33 -0800 Subject: [PATCH] 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 07d0f8a9..f2ecadaf 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.47.3