Fix capitalisation in previous.
authorCarl Hetherington <cth@carlh.net>
Tue, 20 Oct 2015 00:59:13 +0000 (01:59 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 20 Oct 2015 00:59:13 +0000 (01:59 +0100)
src/exceptions.cc

index c588696e22968d0cf3e138543b97afb5a7b769fc..ed6edaa4a77fe520ed79e8a6a1edfda77172c1be 100644 (file)
@@ -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()))))
 {
 
 }