Commit eb32c573 authored by Bob Pendleton's avatar Bob Pendleton

int testmmousetable.c the arguments to main() are not compatible with what is...

int testmmousetable.c the arguments to main() are not compatible with what is required in SDL_main.h
Cleaned up testatomic.c to use the same syntax as every other test program.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403881
parent a78ed924
......@@ -20,7 +20,7 @@ tf(SDL_bool tf)
}
int
main(int argc, char **argv)
main(int argc, char *argv[])
{
volatile Uint32 val32 = 0;
......
......@@ -5,7 +5,7 @@ SDL_Surface *screen;
int quit = 0;
int
main()
main(int argc, char *argv[])
{
SDL_Event event;
int mice;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment