Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
int testmmousetable.c the arguments to main() are not compatible with…
Browse files Browse the repository at this point in the history
… what is required in SDL_main.h

Cleaned up testatomic.c to use the same syntax as every other test program.
  • Loading branch information
pendletonrc committed Sep 23, 2009
1 parent bdc268a commit cb7fe5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/testatomic.c
Expand Up @@ -20,7 +20,7 @@ tf(SDL_bool tf)
}

int
main(int argc, char **argv)
main(int argc, char *argv[])
{

volatile Uint32 val32 = 0;
Expand Down
2 changes: 1 addition & 1 deletion test/testmmousetablet.c
Expand Up @@ -5,7 +5,7 @@ SDL_Surface *screen;
int quit = 0;

int
main()
main(int argc, char *argv[])
{
SDL_Event event;
int mice;
Expand Down

0 comments on commit cb7fe5a

Please sign in to comment.