[pzstd] Fix invalid argument message

dev
Nick Terrell 2016-09-21 16:04:44 -07:00
parent 1c209a4feb
commit f1073c1da7
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ Options::Status Options::parse(int argc, const char **argv) {
notSupported("Zstd benchmarking options.");
return Status::Failure;
default:
std::fprintf(stderr, "Invalid argument: -%c\n", *options);
std::fprintf(stderr, "Invalid argument: %s\n", arg);
return Status::Failure;
}
if (!finished) {