aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/draw.c b/draw.c
index 10a011d..0459392 100644
--- a/draw.c
+++ b/draw.c
@@ -78,7 +78,7 @@ drawtext(const char *text, unsigned long col[ColLast]) {
78unsigned long 78unsigned long
79getcolor(const char *colstr) { 79getcolor(const char *colstr) {
80 Colormap cmap = DefaultColormap(dpy, screen); 80 Colormap cmap = DefaultColormap(dpy, screen);
81 XColor color; 81 XColor color = {0};
82 82
83 XAllocNamedColor(dpy, cmap, colstr, &color, &color); 83 XAllocNamedColor(dpy, cmap, colstr, &color, &color);
84 return color.pixel; 84 return color.pixel;