aboutsummaryrefslogtreecommitdiff
path: root/drw.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-08-12 14:39:30 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-08-12 14:39:30 +0200
commit026827fd65c1163a92a984c4eae3882a6d69f8df (patch)
tree9de6cecba4d2eedd2a0de5284cbcd228dee4c919 /drw.c
parentd14670b9959f8b3760b63dd40a70687a90312b8a (diff)
downloaddmenu-026827fd65c1163a92a984c4eae3882a6d69f8df.tar.gz
dmenu-026827fd65c1163a92a984c4eae3882a6d69f8df.tar.bz2
dmenu-026827fd65c1163a92a984c4eae3882a6d69f8df.zip
die() consistency: always add newline
Diffstat (limited to 'drw.c')
-rw-r--r--drw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drw.c b/drw.c
index 95839c9..c1582e7 100644
--- a/drw.c
+++ b/drw.c
@@ -129,7 +129,7 @@ xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
return NULL;
}
} else {
- die("no font specified.\n");
+ die("no font specified.");
}
font = ecalloc(1, sizeof(Fnt));
@@ -188,7 +188,7 @@ drw_clr_create(Drw *drw, Clr *dest, const char *clrname)
if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
DefaultColormap(drw->dpy, drw->screen),
clrname, dest))
- die("error, cannot allocate color '%s'\n", clrname);
+ die("error, cannot allocate color '%s'", clrname);
}
/* Wrapper to create color schemes. The caller has to call free(3) on the
@@ -331,7 +331,7 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lp
if (!drw->fonts->pattern) {
/* Refer to the comment in xfont_create for more information. */
- die("the first font in the cache must be loaded from a font string.\n");
+ die("the first font in the cache must be loaded from a font string.");
}
fcpattern = FcPatternDuplicate(drw->fonts->pattern);