Add a FALLTHROUGH comment to kvprintf().

Submitted by:	Sebastian Huber <sebastian.huber@embedded-brains.de>
MFC after:	3 days
This commit is contained in:
Mark Johnston 2018-07-17 14:56:54 +00:00
parent 63975809ab
commit 9295517ac9

View File

@ -716,6 +716,7 @@ reswitch: switch (ch = (u_char)*fmt++) {
padc = '0';
goto reswitch;
}
/* FALLTHROUGH */
case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
for (n = 0;; ++fmt) {