mirror of https://github.com/google/benchmark.git
Fix typo in invalid file name error message. (#1094)
This commit is contained in:
parent
d90321ff7a
commit
a9b9471c02
|
@ -377,7 +377,7 @@ size_t RunSpecifiedBenchmarks(BenchmarkReporter* display_reporter,
|
|||
if (!fname.empty()) {
|
||||
output_file.open(fname);
|
||||
if (!output_file.is_open()) {
|
||||
Err << "invalid file name: '" << fname << std::endl;
|
||||
Err << "invalid file name: '" << fname << "'" << std::endl;
|
||||
std::exit(1);
|
||||
}
|
||||
if (!file_reporter) {
|
||||
|
|
Loading…
Reference in New Issue