ucode-mod-html: fix build with gcc 5

Older gcc versions raise a `label at end of compound statement` error due
to the empty default case. Fix the problem by adding an explicit `break`
statement.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit b3d661cd84)
This commit is contained in:
Jo-Philipp Wich
2023-08-08 20:49:31 +02:00
parent bece581c8d
commit 4cb5341961

View File

@@ -2599,6 +2599,7 @@ tokenize_html(const char *s, size_t len, html_token_callback_t cb, void *ud)
case END:
/* not reached */
break;
}
}