summaryrefslogtreecommitdiff
path: root/inffast.c
diff options
context:
space:
mode:
authorNathan Moinvaziri <nathan@nathanm.com>2020-01-07 19:09:34 -0800
committerHans Kristian Rosbach <hk-github@circlestorm.org>2020-02-07 10:44:20 +0100
commite0a711cdde1d0390a922f80b69e3b365533b34cf (patch)
treed5f71e2e28a08b5e6dde57959679198a324ec49e /inffast.c
parent550f98395c8677ae9b08ec39433f5137e5cea2c8 (diff)
Fixed formatting, 4 spaces for code intent, 2 spaces for preprocessor indent, initial function brace on the same line as definition, removed extraneous spaces and new lines.
Diffstat (limited to 'inffast.c')
-rw-r--r--inffast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/inffast.c b/inffast.c
index 62cb951..1f74967 100644
--- a/inffast.c
+++ b/inffast.c
@@ -313,11 +313,11 @@ void ZLIB_INTERNAL zng_inflate_fast(PREFIX3(stream) *strm, unsigned long start)
out = chunkmemset(out, dist, len);
#else
if (len < sizeof(uint64_t))
- out = set_bytes(out, out - dist, dist, len);
+ out = set_bytes(out, out - dist, dist, len);
else if (dist == 1)
- out = byte_memset(out, len);
+ out = byte_memset(out, len);
else
- out = chunk_memset(out, out - dist, dist, len);
+ out = chunk_memset(out, out - dist, dist, len);
#endif
}
} else if ((op & 64) == 0) { /* 2nd level distance code */