Commit 257ab5f5731afc563ed65a5bc4f0c42206706455

Ryan C. Gordon 2014-02-06T07:38:41

Fixed return values on testhotplug mainline.

diff --git a/test/testhotplug.c b/test/testhotplug.c
index 2ae54b2..8c1cec4 100644
--- a/test/testhotplug.c
+++ b/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