remove extra space in SysErrors

This commit is contained in:
Ben Burdette 2020-06-02 08:45:37 -06:00
parent d82d230b40
commit 156d4f8bc8

View file

@ -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"; }