From 967a2b9f2842fc147ea14752ee4693ad94305aba Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 29 Jan 2022 12:53:35 -0500 Subject: Fix typo in error message --- libqpdf/QPDFJob_config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libqpdf/QPDFJob_config.cc b/libqpdf/QPDFJob_config.cc index 81d7d09b..bf33820a 100644 --- a/libqpdf/QPDFJob_config.cc +++ b/libqpdf/QPDFJob_config.cc @@ -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."); } -- cgit v1.2.3-54-g00ecf