diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2017-03-25 23:02:42 +0300 |
---|---|---|
committer | Roberto E. Vargas Caballero <k0ga@shike2.com> | 2017-03-29 18:46:20 +0200 |
commit | 149c0d3aedffe69b625ef95868daae200941d5f5 (patch) | |
tree | 9f6ede1985c6d454226c7ac78dff90a2b0176801 /st.c | |
parent | f2bfd513b14a2aa27796670235557a550b4189db (diff) | |
download | st-149c0d3aedffe69b625ef95868daae200941d5f5.tar.gz st-149c0d3aedffe69b625ef95868daae200941d5f5.tar.bz2 |
Fix commented out code
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } |