all repos — st @ b17aa18f7c15be8db2afd62ac696b63c75755f1c

st (suckless terminal) config

Uses a &[] pointer loop instead of + pointer loop
Roberto E. Vargas Caballero k0ga@shike2.com
commit

b17aa18f7c15be8db2afd62ac696b63c75755f1c

parent

736685d641c23e8b08f3349d64bf30c1c86cd95d

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -2906,7 +2906,7 @@ static bool loaded;

Color *cp; if(loaded) { - for (cp = dc.col; cp < dc.col + LEN(dc.col); ++cp) + for (cp = dc.col; cp < &dc.col[LEN(dc.col)]; ++cp) XftColorFree(xw.dpy, xw.vis, xw.cmap, cp); }