]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fix trailing whitespace in minideflate.c.
authorNathan Moinvaziri <nathan@nathanm.com>
Tue, 26 Dec 2023 21:33:45 +0000 (13:33 -0800)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Fri, 29 Dec 2023 14:51:46 +0000 (15:51 +0100)
test/minideflate.c

index 6b16a032d9430bfa72bd4c54a30889940388a039..3e4b356cc579913f2e3741fc9bfed543f2b7947c 100644 (file)
@@ -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;