diff options
author | yenatch <yenatch@gmail.com> | 2017-06-18 00:54:02 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-06-18 00:54:02 -0400 |
commit | a71005fafa13fe325d6a3fc62f24dea8ec97ffb2 (patch) | |
tree | 0666b9c128e7e71e6fa31abb196a5b5933cab1eb | |
parent | 384788f3700a5c429dfa86c6ec673a648b4b1c42 (diff) |
Remove debug statement from tools/gfx
-rw-r--r-- | tools/gfx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/gfx.c b/tools/gfx.c index 85ce44625..4389a3f46 100644 --- a/tools/gfx.c +++ b/tools/gfx.c @@ -31,7 +31,7 @@ void get_args(int argc, char *argv[]) { {0} }; for (int opt = 0; opt != -1;) { - switch(opt = getopt_long(argc, argv, "ho:d:", long_options)) { + switch (opt = getopt_long(argc, argv, "ho:d:", long_options)) { case 'h': Options.help = true; break; @@ -45,7 +45,6 @@ void get_args(int argc, char *argv[]) { case -1: break; default: - printf("ay %d", opt); usage(); exit(1); break; |