Fix commented out code - 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 149c0d3aedffe69b625ef95868daae200941d5f5
 (DIR) parent f2bfd513b14a2aa27796670235557a550b4189db
 (HTM) Author: Alexander Krotov <ilabdsf@gmail.com>
       Date:   Sat, 25 Mar 2017 23:02:42 +0300
       
       Fix commented out code
       
       Diffstat:
         M st.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/st.c b/st.c
       @@ -2537,7 +2537,7 @@ tresize(int col, int row)
                }
        
                /* allocate any new rows */
       -        for (/* i == minrow */; i < row; i++) {
       +        for (/* i = minrow */; i < row; i++) {
                        term.line[i] = xmalloc(col * sizeof(Glyph));
                        term.alt[i] = xmalloc(col * sizeof(Glyph));
                }