Commit 344fbe61b35ea9e202b9641a8c59c64dd1099e49

Ryan C. Gordon 2015-08-07T01:00:14

testdisplayinfo.c forgot to SDL_Quit() at the end.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/test/testdisplayinfo.c b/test/testdisplayinfo.c
index f7c7e13..d824446 100644
--- a/test/testdisplayinfo.c
+++ b/test/testdisplayinfo.c
@@ -81,6 +81,7 @@ main(int argc, char *argv[])
         SDL_Log("\n");
     }
 
+    SDL_Quit();
     return 0;
 }