summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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)
{}