diff options
-rw-r--r-- | draw.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -78,9 +78,10 @@ drawtext(const char *text, unsigned long col[ColLast]) { | |||
78 | unsigned long | 78 | unsigned long |
79 | getcolor(const char *colstr) { | 79 | getcolor(const char *colstr) { |
80 | Colormap cmap = DefaultColormap(dpy, screen); | 80 | Colormap cmap = DefaultColormap(dpy, screen); |
81 | XColor color = {0}; | 81 | XColor color; |
82 | 82 | ||
83 | XAllocNamedColor(dpy, cmap, colstr, &color, &color); | 83 | if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color)) |
84 | eprint("error, cannot allocate color '%s'\n", colstr); | ||
84 | return color.pixel; | 85 | return color.pixel; |
85 | } | 86 | } |
86 | 87 | ||