From dd8ba60abf5f987f268379d7bff042e520209bde Mon Sep 17 00:00:00 2001 From: Nishi Date: Tue, 12 May 2026 08:47:13 +0900 Subject: [PATCH] fix --- src/js.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js.c b/src/js.c index 69eaf76..d938d31 100644 --- a/src/js.c +++ b/src/js.c @@ -96,7 +96,7 @@ int js_run(const char* file, void (*call)(const char*)) { char js[1024]; if((f = fopen(file, "rb")) == NULL) { - printf("No PMake script (pmake.js) found!\n"); + printf("No PMake script (%s) found!\n", file); return 1; }