From 344fbe61b35ea9e202b9641a8c59c64dd1099e49 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 7 Aug 2015 01:00:14 -0400 Subject: [PATCH] testdisplayinfo.c forgot to SDL_Quit() at the end. --- test/testdisplayinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testdisplayinfo.c b/test/testdisplayinfo.c index f7c7e1395816f..d824446edb0c5 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; }