summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-09 14:12:35 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-09 14:12:35 +0100
commit49291e362d7236f3ea39b297f4f18cf297571f78 (patch)
tree51a361936d987ad663246fca270fa6d97519d7e0 /src
parentd11bf9b19fc0ed5d15a33a1da82044bde859e98e (diff)
Fix error message formatting.
Diffstat (limited to 'src')
-rw-r--r--src/exceptions.h2
1 files changed, 1 insertions, 1 deletions
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)
{}