aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libutil/error.hh2
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"; }