Fix spaces vs tabs and use FALLTHRU as it's used elsewhere

This commit is contained in:
Jack Culhane
2019-05-17 17:18:07 +01:00
parent 1f8269c0e2
commit fa173cd9aa
6 changed files with 20 additions and 20 deletions

2
qio.c
View File

@@ -144,7 +144,7 @@ qprintf(char *fmt, ...)
case '-':
sign = -1;
ch = *fmt++;
/* fall through */
/*FALLTHRU*/
default:
if (('0' <= ch && ch <= '9') ||
ch == '.' || ch == '*') {