Commit 967a2b9f2842fc147ea14752ee4693ad94305aba
1 parent
a7b0aec2
Fix typo in error message
Showing
1 changed file
with
1 additions
and
1 deletions
libqpdf/QPDFJob_config.cc
| ... | ... | @@ -735,7 +735,7 @@ QPDFJob::Config::jobJsonFile(char const* parameter) |
| 735 | 735 | catch (std::exception& e) |
| 736 | 736 | { |
| 737 | 737 | throw std::runtime_error( |
| 738 | - "error with job-json file " + std::string(parameter) + " " + | |
| 738 | + "error with job-json file " + std::string(parameter) + ": " + | |
| 739 | 739 | e.what() + "\nRun " + this->o.m->message_prefix + |
| 740 | 740 | "--job-json-help for information on the file format."); |
| 741 | 741 | } | ... | ... |