autfilt: fix the --acceptance help output
Fixes #334. * bin/autfilt.cc: Turn std::flush into std::endl, and fix a quoting issue.
This commit is contained in:
parent
b6e44e6b8b
commit
8d8fa4139d
1 changed files with 2 additions and 2 deletions
|
|
@ -710,9 +710,9 @@ parse_opt(int key, char* arg, struct argp_state*)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::cerr << ", '" << acc_is_args[i] << '"';
|
std::cerr << ", '" << acc_is_args[i] << '\'';
|
||||||
}
|
}
|
||||||
std::cerr << std::flush;
|
std::cerr << std::endl;
|
||||||
exit(2);
|
exit(2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue