summaryrefslogtreecommitdiff
path: root/src/error.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2011-02-28 16:26:45 -0500
committerJohn Wiegley <johnw@newartisans.com>2011-02-28 16:26:45 -0500
commit49a90ef595010ed547ba71c40ee7ae4344eb8092 (patch)
treea04971f2aa7291b94554756161e0b418a449f26b /src/error.cc
parent8388baafd3e2c6e4b2f76878215d503e8842da27 (diff)
downloadfork-ledger-49a90ef595010ed547ba71c40ee7ae4344eb8092.tar.gz
fork-ledger-49a90ef595010ed547ba71c40ee7ae4344eb8092.tar.bz2
fork-ledger-49a90ef595010ed547ba71c40ee7ae4344eb8092.zip
Fix for Boost.Filesystem v3
Diffstat (limited to 'src/error.cc')
-rw-r--r--src/error.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.cc b/src/error.cc
index 39ac63ea..0b6f228d 100644
--- a/src/error.cc
+++ b/src/error.cc
@@ -51,7 +51,7 @@ string error_context()
string file_context(const path& file, const std::size_t line)
{
std::ostringstream buf;
- buf << "\"" << file << "\", line " << line << ": ";
+ buf << file << ", line " << line << ": ";
return buf.str();
}