mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-27 12:11:15 -03:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user