This commit is contained in:
arg@mmvi 2006-09-26 13:41:51 +02:00
parent 14133be5bd
commit c02da9f87e
1 changed files with 1 additions and 1 deletions

2
draw.c
View File

@ -78,7 +78,7 @@ drawtext(const char *text, unsigned long col[ColLast]) {
unsigned long
getcolor(const char *colstr) {
Colormap cmap = DefaultColormap(dpy, screen);
XColor color;
XColor color = {0};
XAllocNamedColor(dpy, cmap, colstr, &color, &color);
return color.pixel;