aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2017-03-25 23:02:42 +0300
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2017-03-29 18:46:20 +0200
commit149c0d3aedffe69b625ef95868daae200941d5f5 (patch)
tree9f6ede1985c6d454226c7ac78dff90a2b0176801 /st.c
parentf2bfd513b14a2aa27796670235557a550b4189db (diff)
downloadst-149c0d3aedffe69b625ef95868daae200941d5f5.tar.gz
Fix commented out code
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index d7bd32a..ae93ade 100644
--- 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));
}
remember that computers suck.