Commit 18125f76df66a5cee78aad27ae767941a80d6968

Philipp Wiesemann 2013-12-24T19:55:41

Fixed missing return warning in test program source.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/test/testjoystick.c b/test/testjoystick.c
index d9db6e8..9c47719 100644
--- a/test/testjoystick.c
+++ b/test/testjoystick.c
@@ -287,6 +287,7 @@ main(int argc, char *argv[])
     }
     SDL_QuitSubSystem(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK);
 
+    return 0;
 }
 
 #else