summaryrefslogtreecommitdiffstats
path: root/programs/lz4cli.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-04-12 07:21:35 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-04-12 07:21:35 (GMT)
commit62ed15319570d80690915f0d0dba0dc2e9478631 (patch)
treef3728e1d237aed86798c5c9f0366bcdb3f500379 /programs/lz4cli.c
parent9443f3d9244faedb08527bf684994a0495117833 (diff)
downloadlz4-62ed15319570d80690915f0d0dba0dc2e9478631.zip
lz4-62ed15319570d80690915f0d0dba0dc2e9478631.tar.gz
lz4-62ed15319570d80690915f0d0dba0dc2e9478631.tar.bz2
Fixed : a few minor coverity warnings
Diffstat (limited to 'programs/lz4cli.c')
-rw-r--r--programs/lz4cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index f33ea82..7ed0f30 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -251,7 +251,7 @@ static int badusage(void)
static void waitEnter(void)
{
DISPLAY("Press enter to continue...\n");
- getchar();
+ (void)getchar();
}