Uses a &[] pointer loop instead of + pointer loop - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b17aa18f7c15be8db2afd62ac696b63c75755f1c
 (DIR) parent 736685d641c23e8b08f3349d64bf30c1c86cd95d
 (HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Wed, 22 Apr 2015 09:16:35 +0200
       
       Uses a &[] pointer loop instead of + pointer loop
       
       Diffstat:
         M st.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -2906,7 +2906,7 @@ xloadcols(void) {
                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);
                }