From e4f356b9592599ad91aac34bf2265c9bcdfbb81f Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 8 Apr 2025 15:16:21 +0200 Subject: Some minor changes to the interface. - Simplified logger to accept only a string, not a variadic list of args like printf(). This can still use some improvement, but now it is easier to use from other languages. - Fixed some misuses of the logger (wrong types etc) - Renamed some constants - Fixed some typos in comments. --- tools/301_solve_file/solve_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/301_solve_file') diff --git a/tools/301_solve_file/solve_file.c b/tools/301_solve_file/solve_file.c index cefc608..a772e95 100644 --- a/tools/301_solve_file/solve_file.c +++ b/tools/301_solve_file/solve_file.c @@ -33,7 +33,7 @@ void run(void) { } int main(int argc, char **argv) { - char filename[255], dataid[NISSY_DATAID_SIZE], *scrfilename; + char filename[255], dataid[NISSY_SIZE_DATAID], *scrfilename; FILE *scrfile; if (argc < 3) { -- cgit v1.3