diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2014-05-13 18:08:34 -0400 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2014-05-13 18:08:34 -0400 |
commit | 60d9c2bc1d8095f06c13fbf1bcce2d5c587a3a64 (patch) | |
tree | f75bf04c8e97cdfb5dc675e5478b4ea8113fd4b1 /src/error.cc | |
parent | c411792edbe359d5653a2ad5de6b5ea4a40227c2 (diff) | |
download | fork-ledger-60d9c2bc1d8095f06c13fbf1bcce2d5c587a3a64.tar.gz fork-ledger-60d9c2bc1d8095f06c13fbf1bcce2d5c587a3a64.tar.bz2 fork-ledger-60d9c2bc1d8095f06c13fbf1bcce2d5c587a3a64.zip |
Remove trailing whitespace from error messages
Fix for bug #867
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(); } |