mirror of
https://github.com/mirror/tinycc.git
synced 2026-08-22 11:23:27 +08:00
Fix some printf like functions
This commit is contained in:
2
tccpp.c
2
tccpp.c
@@ -3150,7 +3150,7 @@ static int paste_tokens(int t1, CValue *v1, int t2, CValue *v2)
|
||||
if (is_space(tok))
|
||||
continue;
|
||||
tcc_warning("pasting \"%.*s\" and \"%s\" does not give a valid"
|
||||
" preprocessing token", n, cstr.data, (char*)cstr.data + n);
|
||||
" preprocessing token", n, (char *)cstr.data, (char*)cstr.data + n);
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user