fix minor parse warning
authorYann Collet <cyan@fb.com>
Sat, 14 Nov 2020 20:44:18 +0000 (12:44 -0800)
committerYann Collet <cyan@fb.com>
Sat, 14 Nov 2020 20:44:18 +0000 (12:44 -0800)
programs/lz4io.c

index 4c4678c..a274798 100644 (file)
@@ -365,7 +365,7 @@ static FILE* LZ4IO_openDstFile(const char* dstFileName, const LZ4IO_prefs_t* con
 
     /* sparse file */
     {   int const sparseMode = (prefs->sparseFileSupport - (f==stdout)) > 0;
-        if (f && sparseMode) SET_SPARSE_FILE_MODE(f);
+        if (f && sparseMode) { SET_SPARSE_FILE_MODE(f); }
     }
 
     return f;