summaryrefslogtreecommitdiff
path: root/src/exceptions.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-18 18:23:05 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-18 18:23:05 +0000
commit90c23c53318af92fc7e77d12a612eab619aff937 (patch)
tree442562be8f6fbe99b5ba82e8ebad8a0de858d350 /src/exceptions.cc
parent8af7b48d8831cf348163a2f61c14b059cd67a8fd (diff)
Various test tidying.
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
index 6a32a33f..951627a5 100644
--- a/src/exceptions.cc
+++ b/src/exceptions.cc
@@ -24,7 +24,7 @@ using std::string;
using namespace libdcp;
FileError::FileError (std::string const & message, boost::filesystem::path filename, int number)
- : _message (String::compose ("%1 (error %2) (%3)", message, filename.string(), number))
+ : _message (String::compose ("%1 (%2) (error %3)", message, filename.string(), number))
, _filename (filename)
, _number (number)
{