diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-15 21:33:44 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-15 21:33:44 +0000 |
commit | ab984b3e51d32af796fe89e130f57bf58b8a14b2 (patch) | |
tree | 5cd1bef5c7ed213391856b4ff53eaa3d366a7893 | |
parent | 6e75c93f2f94ac9c5c33f61f9963f2fa2e400b15 (diff) |
Notes
-rw-r--r-- | programs/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/fileio.c b/programs/fileio.c index cabb6ec524a2a..e6481f1fa726b 100644 --- a/programs/fileio.c +++ b/programs/fileio.c @@ -138,7 +138,7 @@ static U32 g_dictIDFlag = 1; void FIO_setDictIDFlag(unsigned dictIDFlag) { g_dictIDFlag = dictIDFlag; } static U32 g_checksumFlag = 1; void FIO_setChecksumFlag(unsigned checksumFlag) { g_checksumFlag = checksumFlag; } -static U32 g_removeSrcFile = 1; +static U32 g_removeSrcFile = 0; void FIO_setRemoveSrcFile(unsigned flag) { g_removeSrcFile = (flag>0); } static U32 g_memLimit = 0; void FIO_setMemLimit(unsigned memLimit) { g_memLimit = memLimit; } |