scroll

scroll
git clone git@git.zachrice.app:repos/scroll.git
Log | Files | Refs | README | LICENSE

commit 58c58743d8f391ef0e4776fc46d92c824795d162
parent 247a9b042655291ab64aa9c43f9e89d820e932ee
Author: Steve Ward <planet36@gmail.com>
Date:   Thu, 30 Apr 2020 07:28:00 -0400

Fix warning for too many arguments for format

Diffstat:
Mptty.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; }