Fix a warning in the sdl2 conftest

The argv variable was unused. The build still succeeded,
but GCC emited a warning about it.
This commit is contained in:
Steve Cotton 2024-04-22 15:16:54 +02:00 committed by Steve Cotton
parent 5ec648a1b2
commit c7acbd243a

View File

@ -22,7 +22,7 @@
#error SDL is too old!
#endif
int main(int, char** argv)
int main(int, char**)
{
SDL_Init(0);
SDL_Quit();