Sfoglia il codice sorgente

Use MAX macro where possible.

noname 10 anni fa
parent
commit
93b54cfcc4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      st.c

+ 1 - 1
st.c

@@ -4072,7 +4072,7 @@ main(int argc, char *argv[]) {
 run:
 	setlocale(LC_CTYPE, "");
 	XSetLocaleModifiers("");
-	tnew(cols? cols : 1, rows? rows : 1);
+	tnew(MAX(cols, 1), MAX(rows, 1));
 	xinit();
 	selinit();
 	run();