Introduction
Introduction Statistics Contact Development Disclaimer Help
Fix warning for too many arguments for format - scroll - scrollbackbuffer progr…
git clone git://git.suckless.org/scroll
Log
Files
Refs
README
LICENSE
---
commit 58c58743d8f391ef0e4776fc46d92c824795d162
parent 247a9b042655291ab64aa9c43f9e89d820e932ee
Author: Steve Ward <[email protected]>
Date: Thu, 30 Apr 2020 07:28:00 -0400
Fix warning for too many arguments for format
Diffstat:
M ptty.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/ptty.c b/ptty.c
@@ -130,7 +130,7 @@ main(int argc, char *argv[])
/* handle cursor position request */
if (strcmp("\033[6n", buf) == 0) {
- dprintf(mfd, "\033[25;1R", 1, 1);
+ dprintf(mfd, "\033[25;1R");
continue;
}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.