avoid GCC7 implicit-fallthrough warning

(GCC recognizes certain strings in comments)
This commit is contained in:
Marcin Wojdyr 2017-08-11 00:19:18 +01:00 committed by GitHub
parent 9d9f75eb68
commit 7d80a8b44d

View File

@ -927,7 +927,7 @@ STBSP__PUBLICDEF int STB_SPRINTF_DECORATE(vsprintfcb)(STBSP_SPRINTFCB *callback,
fl |= (sizeof(void *) == 8) ? STBSP__INTMAX : 0; fl |= (sizeof(void *) == 8) ? STBSP__INTMAX : 0;
pr = sizeof(void *) * 2; pr = sizeof(void *) * 2;
fl &= ~STBSP__LEADINGZERO; // 'p' only prints the pointer with zeros fl &= ~STBSP__LEADINGZERO; // 'p' only prints the pointer with zeros
// drop through to X // fall through - to X
case 'X': // upper hex case 'X': // upper hex
case 'x': // lower hex case 'x': // lower hex