diff test/torturethread.c @ 1154:d93862a3d821

Fixed compiler warnings in Watcom C.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 03 Oct 2005 08:12:32 +0000
parents be9c9c8f6d53
children 1dd8bf30a109
line wrap: on
line diff
--- a/test/torturethread.c	Sun Oct 02 00:50:03 2005 +0000
+++ b/test/torturethread.c	Mon Oct 03 08:12:32 2005 +0000
@@ -22,7 +22,7 @@
 
 int SubThreadFunc(void *data) {
 	while(! *(int volatile *)data) {
-		; /*SDL_Delay(10); /* do nothing */
+		; /*SDL_Delay(10);*/  /* do nothing */
 	}
 	return 0;
 }