summaryrefslogtreecommitdiff
path: root/drw.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-08-12 10:57:44 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-08-12 14:58:15 +0200
commitefea6575ca7f27b2c415fe0866349a842699fb72 (patch)
tree59512f120fd7c963bf57630ded4ce36dbbdce10f /drw.c
parentb737e3e6af9e6999baace5d453e405f32c60b2d2 (diff)
downloadsent-efea6575ca7f27b2c415fe0866349a842699fb72.tar.gz
sent-efea6575ca7f27b2c415fe0866349a842699fb72.tar.bz2
sent-efea6575ca7f27b2c415fe0866349a842699fb72.zip
improve some more error messages
- remove \n in die() messages in drw.c - add a few more ':' suffix for functions that set errno. - minor typo.
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);
Software created with 💖