From: Nathan Moinvaziri Date: Tue, 26 Dec 2023 21:33:45 +0000 (-0800) Subject: Fix trailing whitespace in minideflate.c. X-Git-Tag: 2.1.6~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bed309da8419a6f92c26ad62e464250aeed6f3c6;p=thirdparty%2Fzlib-ng.git Fix trailing whitespace in minideflate.c. --- diff --git a/test/minideflate.c b/test/minideflate.c index 6b16a032d..3e4b356cc 100644 --- a/test/minideflate.c +++ b/test/minideflate.c @@ -168,7 +168,7 @@ void inflate_params(FILE *fin, FILE *fout, int32_t read_buf_size, int32_t write_ do { err = PREFIX(inflate)(&d_stream, flush); - /* Ignore Z_BUF_ERROR if we are finishing and read buffer size is + /* Ignore Z_BUF_ERROR if we are finishing and read buffer size is * purposefully limited */ if (flush == Z_FINISH && err == Z_BUF_ERROR && read_buf_size != BUFSIZE) err = Z_OK;