From 4715c557e98725e28faac7fce449f090e136ac0b Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Thu, 3 Apr 2025 16:20:11 +0200 Subject: [PATCH] TESTS: Fix build for filltab25.c Give a return type to main(), so that filltab25.c compiles with modern compilers. --- tests/exp/filltab25.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/exp/filltab25.c b/tests/exp/filltab25.c index 1197143256..491dbff3ec 100644 --- a/tests/exp/filltab25.c +++ b/tests/exp/filltab25.c @@ -182,7 +182,7 @@ void switch_trees() { p = sw; } -main(int argc, char **argv) { +int main(int argc, char **argv) { int conns; int i; -- 2.47.3