From 3005571cd08c3bdd233fd073b6ae956b9d98b570 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 4 Oct 2022 00:14:24 +0200 Subject: Missing bracket in error message. --- src/exceptions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/exceptions.cc') diff --git a/src/exceptions.cc b/src/exceptions.cc index 52bd5f20..00627de8 100644 --- a/src/exceptions.cc +++ b/src/exceptions.cc @@ -141,7 +141,7 @@ BadKDMDateError::BadKDMDateError (bool starts_too_early) StartCompressionError::StartCompressionError (optional code) - : runtime_error (String::compose("Could not start JPEG2000 encoding%1", code ? String::compose(" (%1", *code) : "")) + : runtime_error (String::compose("Could not start JPEG2000 encoding%1", code ? String::compose(" (%1)", *code) : "")) , _code (code) {} -- cgit v1.2.3