remove duplicated `pr = 0`

avoid warning:
Variable 'pr' is reassigned a value before the old one has been used
caused by:

    fw = pr = fl = 0;
    ...
    pr = 0;
This commit is contained in:
Marcin Wojdyr 2017-12-07 15:30:43 +00:00 committed by GitHub
parent 9d9f75eb68
commit 3a969eb64c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1259,7 +1259,7 @@ STBSP__PUBLICDEF int STB_SPRINTF_DECORATE(vsprintfcb)(STBSP_SPRINTFCB *callback,
s = num + STBSP__NUMSZ - 1;
*s = f[0];
l = 1;
fw = pr = fl = 0;
fw = fl = 0;
lead[0] = 0;
tail[0] = 0;
pr = 0;