[dev] [st] [PATCH 1/2] Fix commented out code

From: Alexander Krotov <ilabdsf_AT_gmail.com>
Date: Sat, 25 Mar 2017 23:02:42 +0300

---
 st.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/st.c b/st.c
index d7bd32a..ae93ade 100644
--- a/st.c
+++ b/st.c
_AT_@ -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));
 	}
-- 
2.11.0
Received on Sat Mar 25 2017 - 21:02:42 CET

This archive was generated by hypermail 2.3.0 : Sat Mar 25 2017 - 21:12:13 CET