Introduction
Introduction Statistics Contact Development Disclaimer Help
drw: drw_scm_create: use Clr type - dmenu - dynamic menu
git clone git://git.suckless.org/dmenu
Log
Files
Refs
README
LICENSE
---
commit f0a5b75d6a0d2a62da45e9f65d92ea4a6a2d5831
parent 1cabeda5505dcc35d4d2ca2a09151a7c449fb401
Author: Hiltjo Posthuma <[email protected]>
Date: Fri, 3 Nov 2017 21:10:38 +0100
drw: drw_scm_create: use Clr type
in this context XftColor is a too low-level type.
Diffstat:
M drw.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/drw.c b/drw.c
@@ -200,7 +200,7 @@ drw_scm_create(Drw *drw, const char *clrnames[], size_t clr…
Clr *ret;
/* need at least two colors for a scheme */
- if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, siz…
+ if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, siz…
return NULL;
for (i = 0; i < clrcount; i++)
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.