From 4f00dda95ded87b1554688b3ecea7e495a257385 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Thu, 21 May 2015 21:27:53 +0200 Subject: [PATCH] Removed redundant NULL check in test program. --- test/testgamecontroller.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/testgamecontroller.c b/test/testgamecontroller.c index 2eb3686b4ecc6..d2dc902cddff2 100644 --- a/test/testgamecontroller.c +++ b/test/testgamecontroller.c @@ -294,10 +294,8 @@ main(int argc, char *argv[]) while (keepGoing) { if (gamecontroller == NULL) { if (!reportederror) { - if (gamecontroller == NULL) { - SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open gamecontroller %d: %s\n", device, SDL_GetError()); - retcode = 1; - } + SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open gamecontroller %d: %s\n", device, SDL_GetError()); + retcode = 1; keepGoing = SDL_FALSE; reportederror = SDL_TRUE; }