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:
committed by
Orestis Floros
parent
3e3257af18
commit
6462cf1ca3
@ -115,7 +115,7 @@ void restore_connect(void) {
|
||||
#ifdef I3_ASAN_ENABLED
|
||||
__lsan_do_leak_check();
|
||||
#endif
|
||||
errx(EXIT_FAILURE, "Cannot open display\n");
|
||||
errx(EXIT_FAILURE, "Cannot open display");
|
||||
}
|
||||
|
||||
xcb_watcher = scalloc(1, sizeof(struct ev_io));
|
||||
|
Reference in New Issue
Block a user