From 63e31c2a356097d98f309ad420e9e511e11e417f Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Fri, 20 Jun 2014 23:29:53 -0500 Subject: [PATCH] Remove stray fprintf() from last commit --- main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/main.c b/main.c index 4d071d4..d45aa68 100644 --- a/main.c +++ b/main.c @@ -60,7 +60,6 @@ static int isoption(const char* text, char shortopt, const char* longopt, size_t if (text[1] == '-' && !strcmp(text+2, longopt)) return 1; if (!shortopt) return 0; if (strchr(text, shortopt) != NULL) { - fprintf(stderr, "OPTION: %c\n", shortopt); (*short_opts)++; return 1; } -- 2.50.0