From 84c6716a48743edfb71053ba07755e0cf7ba638d Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sat, 1 Oct 2022 17:04:06 -0700 Subject: Minor formatting improvements. No code changes. --- uncompr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'uncompr.c') diff --git a/uncompr.c b/uncompr.c index f03a1a8..f9532f4 100644 --- a/uncompr.c +++ b/uncompr.c @@ -24,7 +24,7 @@ Z_DATA_ERROR if the input data was corrupted, including if the input data is an incomplete zlib stream. */ -int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) +int ZEXPORT uncompress2(dest, destLen, source, sourceLen) Bytef *dest; uLongf *destLen; const Bytef *source; @@ -83,7 +83,7 @@ int ZEXPORT uncompress2 (dest, destLen, source, sourceLen) err; } -int ZEXPORT uncompress (dest, destLen, source, sourceLen) +int ZEXPORT uncompress(dest, destLen, source, sourceLen) Bytef *dest; uLongf *destLen; const Bytef *source; -- cgit v1.2.3-55-g6feb