diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-06-02 08:45:37 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-06-02 08:45:37 -0600 |
commit | 156d4f8bc892baa4e25814d5f79a332994c750d1 (patch) | |
tree | a253c59394bc69beafb24b0239828746a2c6455a /src/libutil/error.hh | |
parent | d82d230b4015c50e698e3be1ec7a3e12277a3251 (diff) |
remove extra space in SysErrors
Diffstat (limited to 'src/libutil/error.hh')
-rw-r--r-- | src/libutil/error.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/error.hh b/src/libutil/error.hh index b374c2780..0ca0c8b15 100644 --- a/src/libutil/error.hh +++ b/src/libutil/error.hh @@ -155,7 +155,7 @@ public: { errNo = errno; auto hf = hintfmt(args...); - err.hint = hintfmt("%1% : %2%", normaltxt(hf.str()), strerror(errNo)); + err.hint = hintfmt("%1%: %2%", normaltxt(hf.str()), strerror(errNo)); } virtual const char* sname() const override { return "SysError"; } |