diff options
author | Michael Adam <obnox@samba.org> | 2018-03-23 02:03:54 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2018-03-27 09:36:53 +0200 |
commit | ae0cbfe3f2f6d6c2ac3734b7b2026c9a8502c200 (patch) | |
tree | f97a161c9b956662cbee3565c08f6e129dcdb78f | |
parent | badb6435d616066a8648152a24a09f9e090a6e5e (diff) |
html-error: Make a switch fallthrough explicit
This silences a gcc v7 compile warning.
Signed-off-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | src/html-error.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/html-error.c b/src/html-error.c index 0c011a7..625a586 100644 --- a/src/html-error.c +++ b/src/html-error.c @@ -132,6 +132,7 @@ send_html_file (FILE *infile, struct conn_s *connptr) } else in_variable = 0; + /* FALL THROUGH */ default: if (!in_variable) { r = write_message (connptr->client_fd, |