Missing bracket in error message.
authorCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2022 22:14:24 +0000 (00:14 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 3 Oct 2022 22:14:24 +0000 (00:14 +0200)
src/exceptions.cc

index 52bd5f2017e8214075853167a875371043465d90..00627de88ba685441bacf9533bb89113fe52eebe 100644 (file)
@@ -141,7 +141,7 @@ BadKDMDateError::BadKDMDateError (bool starts_too_early)
 
 
 StartCompressionError::StartCompressionError (optional<int> 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)
 {}