From 03d3f238de6dbd333665d4295d23f4bd77bc5cd2 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 7 Sep 2016 07:01:33 +0200 Subject: [PATCH] minor comment --- programs/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/fileio.c b/programs/fileio.c index 02f42e891..7bb14c743 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -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; }