From: Carl Hetherington Date: Wed, 9 Oct 2013 13:12:35 +0000 (+0100) Subject: Fix error message formatting. X-Git-Tag: v0.82~3 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=49291e362d7236f3ea39b297f4f18cf297571f78;p=libdcp.git Fix error message formatting. --- diff --git a/src/exceptions.h b/src/exceptions.h index 3e27f8f7..0c43c70a 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -34,7 +34,7 @@ class FileError : public std::exception { public: FileError (std::string const & message, boost::filesystem::path filename) - : _message (message + "(" + filename.string() + ")") + : _message (message + " (" + filename.string() + ")") , _filename (filename) {}