commit 58c58743d8f391ef0e4776fc46d92c824795d162
Author:     Steve Ward <[email protected]>
AuthorDate: Thu Apr 30 07:28:00 2020 -0400
Commit:     Jochen Sprickerhof <[email protected]>
CommitDate: Thu Apr 30 16:20:12 2020 +0200

    Fix warning for too many arguments for format

diff --git a/ptty.c b/ptty.c
index c99c010..bbbb99f 100644
--- 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;
                        }
 

Reply via email to