From 462bae31d9b378b9efcd018d8f3bd84f0c36775b Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 20 Jun 2018 22:14:50 -0400 Subject: [PATCH] Silence -Wimplicit-fallthrough --- tools/lzcomp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/lzcomp.c b/tools/lzcomp.c index e0a88e44a..7d3e0b8fc 100644 --- a/tools/lzcomp.c +++ b/tools/lzcomp.c @@ -310,6 +310,7 @@ void optimize (struct command * commands, unsigned short count) { break; case 1: if (commands -> value != next -> value) break; + // falls through case 3: if ((commands -> count + next -> count) <= 1024) { commands -> count += next -> count;