aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 0065240..a7064b1 100644
--- a/st.c
+++ b/st.c
@@ -4072,7 +4072,7 @@ main(int argc, char *argv[]) {
4072run: 4072run:
4073 setlocale(LC_CTYPE, ""); 4073 setlocale(LC_CTYPE, "");
4074 XSetLocaleModifiers(""); 4074 XSetLocaleModifiers("");
4075 tnew(cols? cols : 1, rows? rows : 1); 4075 tnew(MAX(cols, 1), MAX(rows, 1));
4076 xinit(); 4076 xinit();
4077 selinit(); 4077 selinit();
4078 run(); 4078 run();