Added missing error return in test program.
diff --git a/test/testbounds.c b/test/testbounds.c
index a447c7a..b410be9 100644
--- a/test/testbounds.c
+++ b/test/testbounds.c
@@ -18,6 +18,7 @@ int main(int argc, char **argv)
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
SDL_Log("SDL_Init(SDL_INIT_VIDEO) failed: %s", SDL_GetError());
+ return 1;
}
total = SDL_GetNumVideoDisplays();