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 | |
parent | f2bfd513b14a2aa27796670235557a550b4189db (diff) | |
download | st-149c0d3aedffe69b625ef95868daae200941d5f5.tar.gz st-149c0d3aedffe69b625ef95868daae200941d5f5.zip |
Fix commented out code
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2537,7 +2537,7 @@ tresize(int col, int row) | |||
2537 | } | 2537 | } |
2538 | 2538 | ||
2539 | /* allocate any new rows */ | 2539 | /* allocate any new rows */ |
2540 | for (/* i == minrow */; i < row; i++) { | 2540 | for (/* i = minrow */; i < row; i++) { |
2541 | term.line[i] = xmalloc(col * sizeof(Glyph)); | 2541 | term.line[i] = xmalloc(col * sizeof(Glyph)); |
2542 | term.alt[i] = xmalloc(col * sizeof(Glyph)); | 2542 | term.alt[i] = xmalloc(col * sizeof(Glyph)); |
2543 | } | 2543 | } |