aboutsummaryrefslogtreecommitdiff
path: root/i3-nagbar
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2019-01-02 19:05:18 +0700
committerOrestis Floros <orestisf1993@gmail.com>2019-01-02 14:23:56 +0200
commit6462cf1ca3f25b5d2cbb89604de00e19465bd984 (patch)
treef40b5dc7a6156c2751618570df93701038e3400f /i3-nagbar
parent3e3257af181c77761c82ace61db36574f1d8b9bd (diff)
downloadi3-6462cf1ca3f25b5d2cbb89604de00e19465bd984.tar.gz
i3-6462cf1ca3f25b5d2cbb89604de00e19465bd984.zip
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.
Diffstat (limited to 'i3-nagbar')
-rw-r--r--i3-nagbar/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/i3-nagbar/main.c b/i3-nagbar/main.c
index 4ce74939..ec3e25fb 100644
--- a/i3-nagbar/main.c
+++ b/i3-nagbar/main.c
@@ -418,7 +418,7 @@ int main(int argc, char *argv[]) {
int screens;
if ((conn = xcb_connect(NULL, &screens)) == NULL ||
xcb_connection_has_error(conn))
- die("Cannot open display\n");
+ die("Cannot open display");
/* Place requests for the atoms we need as soon as possible */
#define xmacro(atom) \
@@ -512,7 +512,7 @@ int main(int argc, char *argv[]) {
do { \
xcb_intern_atom_reply_t *reply = xcb_intern_atom_reply(conn, name##_cookie, NULL); \
if (!reply) \
- die("Could not get atom " #name "\n"); \
+ die("Could not get atom " #name); \
\
A_##name = reply->atom; \
free(reply); \