summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-07-01 04:53:29 (GMT)
committerYann Collet <cyan@fb.com>2022-07-01 04:53:29 (GMT)
commit24b50935f9d56bb82214961dbcbd83f8c296b44b (patch)
treee596390589d2cf3c284baae0bac7c5d34164ed35 /programs/lz4io.c
parentb2f61471941372a1aee49fefee1811a150757892 (diff)
downloadlz4-24b50935f9d56bb82214961dbcbd83f8c296b44b.zip
lz4-24b50935f9d56bb82214961dbcbd83f8c296b44b.tar.gz
lz4-24b50935f9d56bb82214961dbcbd83f8c296b44b.tar.bz2
fail on requesting to process 3+ file names in legacy mode
warning only if -f is selected.
Diffstat (limited to 'programs/lz4io.c')
-rw-r--r--programs/lz4io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 6f636b5..c012215 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -348,7 +348,7 @@ static FILE* LZ4IO_openDstFile(const char* dstFileName, const LZ4IO_prefs_t* con
DISPLAY("%s already exists; not overwritten \n", dstFileName);
return NULL;
}
- DISPLAY("%s already exists; do you wish to overwrite (y/N) ? ", dstFileName);
+ DISPLAY("%s already exists; do you want to overwrite (y/N) ? ", dstFileName);
{ int ch = getchar();
if ((ch!='Y') && (ch!='y')) {
DISPLAY(" not overwritten \n");