From 4f1ff58f829eb333a10c1c88f730e87a6eb8be32 Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Wed, 2 Sep 2015 18:45:13 -0700 Subject: [PATCH] Tweak error message --- programs/lz4cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/lz4cli.c b/programs/lz4cli.c index c82388c..505191b 100644 --- a/programs/lz4cli.c +++ b/programs/lz4cli.c @@ -542,7 +542,7 @@ int main(int argc, char** argv) /* Check if output is defined as console; trigger an error in this case */ if (!strcmp(output_filename,stdoutmark) && IS_CONSOLE(stdout) && !forceStdout) { - DISPLAYLEVEL(1, "refusing to output to console\n"); + DISPLAYLEVEL(1, "refusing to write to console without -c\n"); exit(1); } -- 2.7.4