]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor comment
authorYann Collet <yann.collet.73@gmail.com>
Wed, 7 Sep 2016 05:01:33 +0000 (07:01 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Wed, 7 Sep 2016 05:01:33 +0000 (07:01 +0200)
programs/fileio.c

index 02f42e89155324e93eac621f1cd4380e0bad3d40..7bb14c74359d3b5c9039c04e53837a62bd5fdadd 100644 (file)
@@ -735,7 +735,7 @@ static int FIO_decompressDstFile(dRess_t ress,
     if ( (result != 0)
        && strcmp(dstFileName, nulmark)  /* special case : don't remove() /dev/null (#316) */
        && remove(dstFileName) )
-        result=1;   /* don't do anything special if remove fails */
+        result=1;   /* don't do anything special if remove() fails */
     return result;
 }