Remove \n from errx and die messages

errx() already appends \n internally. "\n" in the error message will
result in a blank line after the message. die() is just a wrapper around
errx() so it receives the same treatment.
This commit is contained in:
Nguyễn Thái Ngọc Duy
2019-01-02 19:05:18 +07:00
committed by Orestis Floros
parent 3e3257af18
commit 6462cf1ca3
6 changed files with 9 additions and 9 deletions

View File

@ -435,7 +435,7 @@ int main(int argc, char *argv[]) {
int screen;
conn = xcb_connect(NULL, &screen);
if (!conn || xcb_connection_has_error(conn))
die("Cannot open display\n");
die("Cannot open display");
sockfd = ipc_connect(socket_path);