summaryrefslogtreecommitdiff
path: root/src/error.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2011-03-03 23:47:11 -0500
committerJohn Wiegley <johnw@newartisans.com>2011-03-03 23:47:11 -0500
commitdc03c646eb65f50210e06c48d30f6b24f05c5f1c (patch)
treee224ac0e118abc0609c025219b6e926f6d8784ef /src/error.cc
parent013aefd9fd9880e9c19aa69dd190f62a1a0f54f4 (diff)
downloadfork-ledger-dc03c646eb65f50210e06c48d30f6b24f05c5f1c.tar.gz
fork-ledger-dc03c646eb65f50210e06c48d30f6b24f05c5f1c.tar.bz2
fork-ledger-dc03c646eb65f50210e06c48d30f6b24f05c5f1c.zip
Corrections to the regression tests
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 0b6f228d..c6309702 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.string() << "\", line " << line << ": ";
return buf.str();
}