mirror of
https://github.com/fluencelabs/musl
synced 2025-07-30 22:01:57 +00:00
zero precision with zero value should not inhibit prefix/width printing
This commit is contained in:
@@ -570,7 +570,10 @@ static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg,
|
||||
case 'u':
|
||||
a = fmt_u(arg.i, z);
|
||||
}
|
||||
if (!arg.i && !p) continue;
|
||||
if (!arg.i && !p) {
|
||||
a=z;
|
||||
break;
|
||||
}
|
||||
if (p>=0) fl &= ~ZERO_PAD;
|
||||
p = MAX(p, z-a + !arg.i);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user