libthr: Fix missing break in switch.

This is also a warning in recent GCC with -Wimplicit-fallthrough.

CID:	1356262
Obtained from:	DragonFly (git 0f037c78 - partial)
This commit is contained in:
Pedro F. Giffuni 2018-01-27 22:27:55 +00:00
parent e28c47b570
commit b9b20abf2b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328493

View file

@ -95,6 +95,7 @@ next: c = *fmt++;
case 'p':
pstr(fd, "0x");
islong = 1;
/* FALLTHROUGH */
case 'd':
case 'u':
case 'x':