summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-10-04 00:14:24 +0200
committerCarl Hetherington <cth@carlh.net>2022-10-04 00:14:24 +0200
commit3005571cd08c3bdd233fd073b6ae956b9d98b570 (patch)
treea9368ed54ffe0478e3ac97566c6a5054822c9d35 /src
parent504c7ba026dff76f4124effef01f36a528a04bec (diff)
Missing bracket in error message.
Diffstat (limited to 'src')
-rw-r--r--src/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
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<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)
{}