URI: 
       Fix warning for too many arguments for format - scroll - scrollbackbuffer program for st
  HTML git clone git://git.suckless.org/scroll
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 58c58743d8f391ef0e4776fc46d92c824795d162
   DIR parent 247a9b042655291ab64aa9c43f9e89d820e932ee
  HTML Author: Steve Ward <planet36@gmail.com>
       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(-)
       ---
   DIR 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;
                                }