ape/stdio: %z format is VLONG on amd64
This commit is contained in:
parent
4308f6e7e6
commit
6a651b42ac
1 changed files with 4 additions and 0 deletions
|
@ -188,6 +188,10 @@ vfprintf(FILE *f, const char *s, va_list args)
|
|||
}
|
||||
else
|
||||
precision = -1;
|
||||
|
||||
if(sizeof(void*) == sizeof(long long))
|
||||
tflag['z'] = VLONG;
|
||||
|
||||
while(tfl = tflag[*s&_IO_CHMASK]){
|
||||
if(tfl == LONG && (flags & LONG)){
|
||||
flags &= ~LONG;
|
||||
|
|
Loading…
Reference in a new issue