Add extra space to polybar-msg error message

This commit is contained in:
patrick96 2022-01-29 14:31:13 +01:00 committed by Patrick Ziegler
parent 28af6bb493
commit a8035a7f68
1 changed files with 1 additions and 1 deletions

View File

@ -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) {