printf: Fix missing arguments for %u/%o/%x/%X after r265592.

If a numeric argument is missing, zero should be assumed, for signed as well
as unsigned conversions.

This fixes the 'zero' regression tests.

r265592 erroneously reverted r244407.
This commit is contained in:
jilles 2014-05-13 21:24:55 +00:00
parent f14c076ec7
commit 2096c46380

View File

@ -575,7 +575,7 @@ getnum(intmax_t *ip, uintmax_t *uip, int signedconv)
int rval;
if (!*gargv) {
*ip = 0;
*ip = *uip = 0;
return (0);
}
if (**gargv == '"' || **gargv == '\'') {