1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

dprintf_formatf: Value stored to 'left' is never read

This commit is contained in:
Daniel Stenberg 2010-04-16 23:50:39 +02:00
parent d841ab82b8
commit dfad8a6dad

View File

@ -963,7 +963,6 @@ static int dprintf_formatf(
/* RECURSIVE USAGE */ /* RECURSIVE USAGE */
len = curl_msnprintf(fptr, left, ".%ld", prec); len = curl_msnprintf(fptr, left, ".%ld", prec);
fptr += len; fptr += len;
left -= len;
} }
if(p->flags & FLAGS_LONG) if(p->flags & FLAGS_LONG)
*fptr++ = 'l'; *fptr++ = 'l';