drw: drw_scm_create: use Clr type

in this context XftColor is a too low-level type.
This commit is contained in:
Hiltjo Posthuma 2017-11-03 21:10:38 +01:00
parent 1cabeda550
commit f0a5b75d6a
1 changed files with 1 additions and 1 deletions

2
drw.c
View File

@ -200,7 +200,7 @@ drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount)
Clr *ret;
/* need at least two colors for a scheme */
if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(XftColor))))
if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(Clr))))
return NULL;
for (i = 0; i < clrcount; i++)