diff options
-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 | } |