More using FLOGF when formatting is needed

sed-patched, every time a "%" is used in a call to `FLOG`, we use
`FLOGF` instead.
This commit is contained in:
Fabian Homborg
2019-05-30 11:54:09 +02:00
parent 9d62d8e3fd
commit d73ee4d54b
17 changed files with 40 additions and 40 deletions

View File

@@ -257,7 +257,7 @@ static inline parse_token_type_t parse_token_type_from_tokenizer_token(
case TOK_COMMENT:
return parse_special_type_comment;
}
FLOG(error, "Bad token type %d passed to %s", (int)tokenizer_token_type, __FUNCTION__);
FLOGF(error, "Bad token type %d passed to %s", (int)tokenizer_token_type, __FUNCTION__);
DIE("bad token type");
return token_type_invalid;
}