diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-04 00:14:24 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-04 00:14:24 +0200 |
| commit | 3005571cd08c3bdd233fd073b6ae956b9d98b570 (patch) | |
| tree | a9368ed54ffe0478e3ac97566c6a5054822c9d35 /src | |
| parent | 504c7ba026dff76f4124effef01f36a528a04bec (diff) | |
Missing bracket in error message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/exceptions.cc | 2 |
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) {} |
