One more s/int/long/
This commit is contained in:
parent
ce8d71edbc
commit
c92daa02e4
1 changed files with 1 additions and 1 deletions
2
tcc.c
2
tcc.c
|
|
@ -4293,7 +4293,7 @@ static int macro_subst_tok(TokenString *tok_str,
|
||||||
next_nomacro();
|
next_nomacro();
|
||||||
}
|
}
|
||||||
tok_str_add(&str, 0);
|
tok_str_add(&str, 0);
|
||||||
sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, (int)str.str);
|
sym_push2(&args, sa->v & ~SYM_FIELD, sa->type.t, (long)str.str);
|
||||||
sa = sa->next;
|
sa = sa->next;
|
||||||
if (tok == ')') {
|
if (tok == ')') {
|
||||||
/* special case for gcc var args: add an empty
|
/* special case for gcc var args: add an empty
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue