From: Mark Wooding Date: Sun, 3 May 2020 15:18:28 +0000 (+0100) Subject: lib/mime.c: Add a comment explaining the intentional `case' fall-through. X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/commitdiff_plain/6e3379050ee4b40c970f61d31dc6f9b057d39774?ds=inline lib/mime.c: Add a comment explaining the intentional `case' fall-through. This is sufficient to muffle a newish GCC warning. --- diff --git a/lib/mime.c b/lib/mime.c index 00a3c72..99dac39 100644 --- a/lib/mime.c +++ b/lib/mime.c @@ -174,6 +174,7 @@ const char *mime_parse_word(const char *s, char **valuep, case '\\': if(!(c = *s++)) return 0; + /* else fall through ... */ default: dynstr_append(value, c); break;