From fe7e711da3ed3039de30fda446bbb053a063f259 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sat, 16 Aug 2025 01:29:24 +0300
Subject: [PATCH] test/AnimationTestSuite.c: fix signature of main()
---
test/AnimationTestSuite.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/test/AnimationTestSuite.c b/test/AnimationTestSuite.c
index fdc6c46c..297ab1f7 100644
--- a/test/AnimationTestSuite.c
+++ b/test/AnimationTestSuite.c
@@ -53,8 +53,11 @@ static const char *GetAnimationDecoderStatusString(IMG_AnimationDecoderStatus st
}
}
-int main()
+int main(int argc, char **argv)
{
+ (void)argc;
+ (void)argv;
+
printf("SDL Version: %i\n", SDL_GetVersion());
printf("SDL_image Version: %i\n", IMG_Version());