Skip to content

Commit

Permalink
Fixed compiler warnings in Watcom C.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 3, 2005
1 parent bc9d5e7 commit 490defa
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
3 changes: 2 additions & 1 deletion test/testcdrom.c
Expand Up @@ -2,8 +2,9 @@
/* Test the SDL CD-ROM audio functions */

#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>

#include "SDL.h"

Expand Down
2 changes: 2 additions & 0 deletions test/testkeys.c
Expand Up @@ -3,6 +3,8 @@

#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>

#include "SDL.h"

Expand Down
20 changes: 16 additions & 4 deletions test/testtypes.c
@@ -1,8 +1,20 @@

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SDL_main.h"
#include "SDL_types.h"

/*
* Watcom C flags these as Warning 201: "Unreachable code" if you just
* compare them directly, so we push it through a function to keep the
* compiler quiet. --ryan.
*/
static int badsize(size_t sizeoftype, size_t hardcodetype)
{
return sizeoftype != hardcodetype;
}

int main(int argc, char *argv[])
{
int error = 0;
Expand All @@ -11,26 +23,26 @@ int main(int argc, char *argv[])
if ( argv[1] && (strcmp(argv[1], "-q") == 0) )
verbose = 0;

if ( sizeof(Uint8) != 1 ) {
if ( badsize(sizeof(Uint8), 1) ) {
if ( verbose )
printf("sizeof(Uint8) != 1, instead = %d\n",
sizeof(Uint8));
++error;
}
if ( sizeof(Uint16) != 2 ) {
if ( badsize(sizeof(Uint16), 2) ) {
if ( verbose )
printf("sizeof(Uint16) != 2, instead = %d\n",
sizeof(Uint16));
++error;
}
if ( sizeof(Uint32) != 4 ) {
if ( badsize(sizeof(Uint32), 4) ) {
if ( verbose )
printf("sizeof(Uint32) != 4, instead = %d\n",
sizeof(Uint32));
++error;
}
#ifdef SDL_HAS_64BIT_TYPE
if ( sizeof(Uint64) != 8 ) {
if ( badsize(sizeof(Uint64), 8) ) {
if ( verbose )
printf("sizeof(Uint64) != 8, instead = %d\n",
sizeof(Uint64));
Expand Down
1 change: 1 addition & 0 deletions test/testver.c
Expand Up @@ -4,6 +4,7 @@
*/

#include <stdio.h>
#include <stdlib.h>

#include "SDL.h"

Expand Down
2 changes: 1 addition & 1 deletion test/torturethread.c
Expand Up @@ -22,7 +22,7 @@ static void quit(int rc)

int SubThreadFunc(void *data) {
while(! *(int volatile *)data) {
; /*SDL_Delay(10); /* do nothing */
; /*SDL_Delay(10);*/ /* do nothing */
}
return 0;
}
Expand Down

0 comments on commit 490defa

Please sign in to comment.