diff options
Diffstat (limited to 'src/error.cc')
-rw-r--r-- | src/error.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.cc b/src/error.cc index 035c5f19..830dacb0 100644 --- a/src/error.cc +++ b/src/error.cc @@ -49,7 +49,7 @@ string error_context() string file_context(const path& file, const std::size_t line) { std::ostringstream buf; - buf << '"' << file.string() << "\", line " << line << ": "; + buf << '"' << file.string() << "\", line " << line << ":"; return buf.str(); } |