summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-20 01:59:13 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-20 01:59:13 +0100
commitc11357a119080e2f23d454fdd053aa849fc00f36 (patch)
tree0e9df83a0f8bdfae895c35b6552e9e9ec9263346 /src/exceptions.cc
parent6ea37804a7f9dd72a29a25e7594a39fa47f53192 (diff)
Fix capitalisation in previous.
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
index c588696e..ed6edaa4 100644
--- a/src/exceptions.cc
+++ b/src/exceptions.cc
@@ -50,10 +50,10 @@ TimeFormatError::TimeFormatError (string bad_time)
MissingAssetError::MissingAssetError (boost::filesystem::path path, AssetType type)
: DCPReadError (
- type == MAIN_PICTURE ? String::compose ("missing asset %1 for main picture", path.string()) :
- (type == MAIN_SOUND ? String::compose ("missing asset %1 for main sound", path.string()) :
- (type == MAIN_SUBTITLE ? String::compose ("missing asset %1 for main subtitle", path.string()) :
- String::compose ("missing asset %1", path.string()))))
+ type == MAIN_PICTURE ? String::compose ("Missing asset %1 for main picture", path.string()) :
+ (type == MAIN_SOUND ? String::compose ("Missing asset %1 for main sound", path.string()) :
+ (type == MAIN_SUBTITLE ? String::compose ("Missing asset %1 for main subtitle", path.string()) :
+ String::compose ("Missing asset %1", path.string()))))
{
}