st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit 149c0d3aedffe69b625ef95868daae200941d5f5
parent f2bfd513b14a2aa27796670235557a550b4189db
Author: Alexander Krotov <ilabdsf@gmail.com>
Date:   Sat, 25 Mar 2017 23:02:42 +0300

Fix commented out code

Diffstat:
Mst.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
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));
     }