Fix commented out code - st - simple terminal
HTML git clone https://git.parazyd.org/st
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 149c0d3aedffe69b625ef95868daae200941d5f5
DIR parent f2bfd513b14a2aa27796670235557a550b4189db
HTML 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));
}