From 4fa7b8719670d4fa089c2cf3d38ee1c87b841cde Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 11 Oct 2020 17:37:29 -0700 Subject: [PATCH] squash a -Wimplicit-fallthrough warning GCC recognizes "fall through" and "fallthrough" comments to suppress this warning but not "falling through." --- cmd/lefty/dot2l/dot2l.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lefty/dot2l/dot2l.c b/cmd/lefty/dot2l/dot2l.c index 3c8f26b9c..e3674b017 100644 --- a/cmd/lefty/dot2l/dot2l.c +++ b/cmd/lefty/dot2l/dot2l.c @@ -150,7 +150,7 @@ static int filllabeltable (Tobj to, int flag) { else if (*(lsp + 1) == ' ') ishardspace = TRUE, lsp++; } - /* falling through ... */ + /* fall through */ default: if ((mode & HASTABLE) && *lsp != ' ') return -1; -- 2.40.0