From cb18c34a8c8d6b50d117f73b20a12586923d5c78 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sun, 31 May 2026 13:29:23 +0100 Subject: [PATCH] Use / not \ --- lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.c b/lib.c index 723aa98..b420068 100755 --- a/lib.c +++ b/lib.c @@ -677,7 +677,7 @@ FILE *scc_tmpfile (void) { return 0; } - if ((name = strrchr (template, '\\'))) { + if ((name = strrchr (template, '/'))) { name++; } else { name = template; -- 2.34.1