From 15ab5f6b841f5ebe83c1515f092bd4aa730a368b Mon Sep 17 00:00:00 2001 From: Nate Choe Date: Thu, 28 Sep 2023 02:06:40 -0500 Subject: [PATCH] Remove fallthrough --- src/parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parse.c b/src/parse.c index 8dd949c..9feccc7 100644 --- a/src/parse.c +++ b/src/parse.c @@ -101,6 +101,7 @@ static int writefile(struct expandfile *file, FILE *out) { break; case ';': fputs(";", out); + break; case '<': fputs("<", out); break;