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:
Alexandre Duret-Lutz 2018-03-16 08:20:19 +01:00
parent b6e44e6b8b
commit 8d8fa4139d

View file

@ -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);
} }
} }