0
0
mirror of https://github.com/madler/zlib.git synced 2026-01-18 17:11:27 +01:00

Fix indentation in gzread.c.

This commit is contained in:
Mark Adler
2025-05-25 20:54:35 -07:00
parent 9702c9d64e
commit 562b823635

View File

@@ -248,7 +248,7 @@ local int gz_fetch(gz_statep state) {
}
/* Skip state->skip (> 0) uncompressed bytes of output. Return -1 on error, 0
on success. */
on success. */
local int gz_skip(gz_statep state) {
unsigned n;
@@ -257,8 +257,8 @@ local int gz_skip(gz_statep state) {
/* skip over whatever is in output buffer */
if (state->x.have) {
n = GT_OFF(state->x.have) ||
(z_off64_t)state->x.have > state->skip ?
(unsigned)state->skip : state->x.have;
(z_off64_t)state->x.have > state->skip ?
(unsigned)state->skip : state->x.have;
state->x.have -= n;
state->x.next += n;
state->x.pos += n;