2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 17:30:54 +00:00

Fix typo in error message

This commit is contained in:
Jay Berkenbilt 2022-01-29 12:53:35 -05:00
parent a7b0aec2cf
commit 967a2b9f28

View File

@ -735,7 +735,7 @@ QPDFJob::Config::jobJsonFile(char const* parameter)
catch (std::exception& e)
{
throw std::runtime_error(
"error with job-json file " + std::string(parameter) + " " +
"error with job-json file " + std::string(parameter) + ": " +
e.what() + "\nRun " + this->o.m->message_prefix +
"--job-json-help for information on the file format.");
}