printf: "if a precision is specified, the '0' flag shall be ignored."
authorRich Felker <dalias@aerifal.cx>
Mon, 4 Jul 2011 15:55:52 +0000 (11:55 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 4 Jul 2011 15:55:52 +0000 (11:55 -0400)
src/stdio/vfprintf.c

index 6766012..4c990e5 100644 (file)
@@ -570,11 +570,11 @@ 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 (p>=0) fl &= ~ZERO_PAD;
                        if (!arg.i && !p) {
                                a=z;
                                break;
                        }
-                       if (p>=0) fl &= ~ZERO_PAD;
                        p = MAX(p, z-a + !arg.i);
                        break;
                case 'c':