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

Commit

Permalink
Fixed compiler warnings in test programs by adding return statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 14, 2013
1 parent 86d5a95 commit 4cd6617
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/testnative.c
Expand Up @@ -227,6 +227,8 @@ main(int argc, char *argv[])
}

quit(0);

return 0; /* to prevent compiler warning */
}

/* vi: set ts=4 sw=4 expandtab: */
2 changes: 2 additions & 0 deletions test/testspriteminimal.c
Expand Up @@ -162,6 +162,8 @@ main(int argc, char *argv[])
}

quit(0);

return 0; /* to prevent compiler warning */
}

/* vi: set ts=4 sw=4 expandtab: */

0 comments on commit 4cd6617

Please sign in to comment.