aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-11-03 21:10:38 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-11-03 21:10:38 +0100
commitf0a5b75d6a0d2a62da45e9f65d92ea4a6a2d5831 (patch)
tree63190fd35f1e0029ed1b03ec73f43bd9fb2e5997
parent1cabeda5505dcc35d4d2ca2a09151a7c449fb401 (diff)
drw: drw_scm_create: use Clr type
in this context XftColor is a too low-level type.
-rw-r--r--drw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drw.c b/drw.c
index c1582e7..c638323 100644
--- a/drw.c
+++ b/drw.c
@@ -200,7 +200,7 @@ drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount)
200 Clr *ret; 200 Clr *ret;
201 201
202 /* need at least two colors for a scheme */ 202 /* need at least two colors for a scheme */
203 if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(XftColor)))) 203 if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(Clr))))
204 return NULL; 204 return NULL;
205 205
206 for (i = 0; i < clrcount; i++) 206 for (i = 0; i < clrcount; i++)