about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--draw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/draw.c b/draw.c
index 3fbac5b..362d025 100644
--- a/draw.c
+++ b/draw.c
@@ -149,7 +149,8 @@ getcolor(const char *colstr) {
 	Colormap cmap = DefaultColormap(dpy, screen);
 	XColor color;
 
-	XAllocNamedColor(dpy, cmap, colstr, &color, &color);
+	if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
+		eprint("error, cannot allocate color '%s'\n", colstr);
 	return color.pixel;
 }