X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvfprintf.c;h=19afd6c9a5389a687f465b9ffb119b8bac1f7f7e;hb=4ee039f3545976f9e3e25a7e5d7b58f1f2316dc3;hp=3512b4de7a1e49c88ce6ca9c7b0a92640b1b9c55;hpb=5cbd76c6b05b381f269e0e204e10690d69f1d6ea;p=musl diff --git a/src/stdio/vfprintf.c b/src/stdio/vfprintf.c index 3512b4de..19afd6c9 100644 --- a/src/stdio/vfprintf.c +++ b/src/stdio/vfprintf.c @@ -526,13 +526,13 @@ static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, switch(t) { case 'n': switch(ps) { - case BARE: *(int *)arg.p = l; break; - case LPRE: *(long *)arg.p = l; break; - case LLPRE: *(long long *)arg.p = l; break; - case HPRE: *(unsigned short *)arg.p = l; break; - case HHPRE: *(unsigned char *)arg.p = l; break; - case ZTPRE: *(size_t *)arg.p = l; break; - case JPRE: *(uintmax_t *)arg.p = l; break; + case BARE: *(int *)arg.p = cnt; break; + case LPRE: *(long *)arg.p = cnt; break; + case LLPRE: *(long long *)arg.p = cnt; break; + case HPRE: *(unsigned short *)arg.p = cnt; break; + case HHPRE: *(unsigned char *)arg.p = cnt; break; + case ZTPRE: *(size_t *)arg.p = cnt; break; + case JPRE: *(uintmax_t *)arg.p = cnt; break; } continue; case 'p':