From 65ed2eb92c8bc98ae1cf810e72b1c0fc041656fe Mon Sep 17 00:00:00 2001 From: vlad shkapenyuk Date: Thu, 10 Oct 2019 16:38:53 -0400 Subject: [PATCH] Fix a bug in gsprintconsole parameters Signed-off-by: vlad shkapenyuk Change-Id: I08eaa7f2993b276a36e79b80eba7fc57177b7fc6 --- src/tools/gsprintconsole.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/gsprintconsole.c b/src/tools/gsprintconsole.c index 4bd0857..fbd67e3 100644 --- a/src/tools/gsprintconsole.c +++ b/src/tools/gsprintconsole.c @@ -166,7 +166,7 @@ int main(int argc, char* argv[]) { // by default the output will go to stdout outf = stdout; - while ((ch = getopt(argc, argv, "l:p:r:vXD")) != -1) { + while ((ch = getopt(argc, argv, "l:p:r:veXD")) != -1) { switch (ch) { case 'r': bufsz=atoi(optarg); -- 2.16.6