patches

Patches for various other programs
git clone https://git.regexghost.com/patches.git
Log | Files | Refs | README

commit ade1dca617e23fde1a39d1454bf923f73890d7e5
parent b89dde2f1e0b9b0bf4fa712ef5d56d4f94a286f5
Author: regexghost <dev@regexghost.com>
Date:   Fri, 31 Jul 2026 20:16:37 +0100

nano-copy-system bugfix, using fprintf properly

Diffstat:
Mnano-copy-system.diff | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nano-copy-system.diff b/nano-copy-system.diff @@ -17,7 +17,7 @@ index 856f6ff..3b9a9fe 100644 + while (curline != NULL) { + if (i != 0) fprintf(f, "\n"); + i++; -+ fprintf(f, curline->data); ++ fprintf(f, "%s", curline->data); + curline = curline->next; + } +