Browse Source

Fixed return values on testhotplug mainline.

Ryan C. Gordon 11 years ago
parent
commit
257ab5f573
1 changed files with 3 additions and 1 deletions
  1. 3 1
      test/testhotplug.c

+ 3 - 1
test/testhotplug.c

@@ -126,6 +126,8 @@ main(int argc, char *argv[])
     }
 
     SDL_QuitSubSystem(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK);
+
+    return 0;
 }
 #else
 
@@ -133,7 +135,7 @@ int
 main(int argc, char *argv[])
 {
     SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL compiled without Joystick support.\n");
-    exit(1);
+    return 1;
 }
 
 #endif