aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-05-30 21:39:49 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-05-30 22:05:17 +0200
commite6e2c6199f102f1459b53717050eee27832f4f87 (patch)
tree546bfb547dd14d3a43e4c40f24f69344edc85372
parent94b8ec002101a5e8f52a342e53431eea71aa0631 (diff)
downloadst-patched-e6e2c6199f102f1459b53717050eee27832f4f87.tar.bz2
st-patched-e6e2c6199f102f1459b53717050eee27832f4f87.tar.xz
st-patched-e6e2c6199f102f1459b53717050eee27832f4f87.zip
tiny style fix
-rw-r--r--st.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/st.c b/st.c
index 54af098..2d901ab 100644
--- a/st.c
+++ b/st.c
@@ -843,7 +843,6 @@ ttyread(void)
843 if (buflen > 0) 843 if (buflen > 0)
844 memmove(buf, buf + written, buflen); 844 memmove(buf, buf + written, buflen);
845 return ret; 845 return ret;
846
847 } 846 }
848} 847}
849 848
@@ -1778,7 +1777,7 @@ csihandle(void)
1778 break; 1777 break;
1779 case 'n': /* DSR – Device Status Report (cursor position) */ 1778 case 'n': /* DSR – Device Status Report (cursor position) */
1780 if (csiescseq.arg[0] == 6) { 1779 if (csiescseq.arg[0] == 6) {
1781 len = snprintf(buf, sizeof(buf),"\033[%i;%iR", 1780 len = snprintf(buf, sizeof(buf), "\033[%i;%iR",
1782 term.c.y+1, term.c.x+1); 1781 term.c.y+1, term.c.x+1);
1783 ttywrite(buf, len, 0); 1782 ttywrite(buf, len, 0);
1784 } 1783 }