Update print format specifier
This commit is contained in:
@@ -236,7 +236,7 @@ bool validate_json(char *json) {
|
||||
}
|
||||
|
||||
void print_token(token_t token) {
|
||||
printf("{LINE: %4llu, COLUMN: %4llu, TYPE: ", token.line, token.column);
|
||||
printf("{LINE: %4lu, COLUMN: %4lu, TYPE: ", token.line, token.column);
|
||||
|
||||
switch (token.type) {
|
||||
case TK_NO_TOKEN:
|
||||
|
Reference in New Issue
Block a user