Przeglądaj źródła

Simplify loop condition.

noname@inventati.org 10 lat temu
rodzic
commit
b9390a5496
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      st.c

+ 1 - 1
st.c

@@ -944,7 +944,7 @@ getsel(void) {
 	ptr = str = xmalloc(bufsize);
 
 	/* append every set & selected glyph to the selection */
-	for(y = sel.nb.y; y < sel.ne.y + 1; y++) {
+	for(y = sel.nb.y; y <= sel.ne.y; y++) {
 		linelen = tlinelen(y);
 
 		if(sel.type == SEL_RECTANGULAR) {