removing additional space after option variable

This commit is contained in:
Brian Card 2015-02-23 07:15:54 -05:00
parent d10bce3dc8
commit 933b9636e5
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ int main(int argc, char **argv) {
{"early-response", no_argument, &flag, 5},
{nullptr, 0, nullptr, 0}};
int option_index = 0;
int c =
int c =
getopt_long(argc, argv, "DVb:c:d:ehn:p:va:", long_options, &option_index);
char *end;
if (c == -1) {