]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
formatting
authorYi Jin <yijinru@gmail.com>
Sat, 15 Dec 2018 06:10:31 +0000 (22:10 -0800)
committerYi Jin <yijinru@gmail.com>
Sat, 15 Dec 2018 06:10:31 +0000 (22:10 -0800)
examples/simple_compressionCCtx.c

index a5447f06986d85d43ab340c3c8bba8abb0947961..d3dd67cc7e325feccb370ceaf6462df1925a3b75 100644 (file)
@@ -18,7 +18,7 @@
 
 /* compress with pre-allocated context (ZSTD_CCtx) and input/output buffers*/
 static void compressExpress_orDie(const char* fname, const char* oname,
-                                   ZSTD_CCtx* cctx, void* cBuff, size_t cBuffSize, void* fBuff, size_t fBuffSize)
+                                  ZSTD_CCtx* cctx, void* cBuff, size_t cBuffSize, void* fBuff, size_t fBuffSize)
 {
     size_t fSize;
     loadFile_orDie(fname, &fSize, fBuff, fBuffSize);