From a8035a7f68bb9e8c2ee436408ef4b992f64a6741 Mon Sep 17 00:00:00 2001 From: patrick96 Date: Sat, 29 Jan 2022 14:31:13 +0100 Subject: [PATCH] Add extra space to polybar-msg error message --- src/polybar-msg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/polybar-msg.cpp b/src/polybar-msg.cpp index 0262bc33..4be0bef7 100644 --- a/src/polybar-msg.cpp +++ b/src/polybar-msg.cpp @@ -34,7 +34,7 @@ void error(const string& msg) { } void uv_error(int status, const string& msg) { - throw std::runtime_error(msg + "(" + uv_strerror(status) + ")"); + throw std::runtime_error(msg + " (" + uv_strerror(status) + ")"); } void usage(FILE* f, const string& parameters) {