From 32009294d2de3e197c8d4dc950559ff948ea2fc9 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 4 Oct 2024 08:58:47 +0200 Subject: Clean up tool output --- tools/100_checkdata/checkdata.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tools/100_checkdata') diff --git a/tools/100_checkdata/checkdata.c b/tools/100_checkdata/checkdata.c index 05961c1..502925f 100644 --- a/tools/100_checkdata/checkdata.c +++ b/tools/100_checkdata/checkdata.c @@ -31,8 +31,6 @@ run(void) { } int main(int argc, char **argv) { - char description[256]; - if (argc < 4) { fprintf(stderr, "Error: not enough arguments. " "A solver, its options and a file name must be given.\n"); @@ -42,11 +40,9 @@ int main(int argc, char **argv) { solver = argv[1]; options = argv[2]; filename = argv[3]; - sprintf(description, "checking data for solver %s" - "with options %s from file %s", solver, options, filename); nissy_setlogger(log_stderr); - timerun(run, description); + timerun(run); return 0; } -- cgit v1.3