gzip: trivial code shrink -5 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2015-02-03 15:25:17 +01:00
parent a977778893
commit b62d4d9d57
1 changed files with 4 additions and 4 deletions

View File

@ -442,19 +442,19 @@ static void put_16bit(ush w)
*dst = (uch)w;
w >>= 8;
#else
*dst++ = (uch)w;
*dst = (uch)w;
w >>= 8;
if (outcnt < OUTBUFSIZ-2) {
/* Common case */
*dst = w;
dst[1] = w;
G1.outcnt = outcnt + 2;
return;
}
#endif
/* Slowpath: we will need to do flush_outbuf() */
G1.outcnt++;
if (G1.outcnt == OUTBUFSIZ)
G1.outcnt = ++outcnt;
if (outcnt == OUTBUFSIZ)
flush_outbuf();
put_8bit(w);
}