Remove debug statement from tools/gfx

This commit is contained in:
yenatch 2017-06-18 00:54:02 -04:00
parent 384788f370
commit a71005fafa

View File

@ -31,7 +31,7 @@ void get_args(int argc, char *argv[]) {
{0} {0}
}; };
for (int opt = 0; opt != -1;) { 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': case 'h':
Options.help = true; Options.help = true;
break; break;
@ -45,7 +45,6 @@ void get_args(int argc, char *argv[]) {
case -1: case -1:
break; break;
default: default:
printf("ay %d", opt);
usage(); usage();
exit(1); exit(1);
break; break;