Browse Source

drw: drw_scm_create: use Clr type

in this context XftColor is a too low-level type.
master
Hiltjo Posthuma 6 years ago
parent
commit
f0a5b75d6a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      drw.c

+ 1
- 1
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++)


Loading…
Cancel
Save