Add extra space to polybar-msg error message
This commit is contained in:
parent
28af6bb493
commit
a8035a7f68
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ void error(const string& msg) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void uv_error(int status, 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) {
|
void usage(FILE* f, const string& parameters) {
|
||||||
|
|
Loading…
Reference in a new issue