From ccd64798e163a864a74fa1940c5604614eee4c65 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Wed, 12 Oct 2016 23:36:29 +0200 Subject: [PATCH] Linux: Removed redundant function call. --- src/core/linux/SDL_ime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/linux/SDL_ime.c b/src/core/linux/SDL_ime.c index e33fa7d4b..ee3412147 100644 --- a/src/core/linux/SDL_ime.c +++ b/src/core/linux/SDL_ime.c @@ -44,7 +44,7 @@ InitIME() { static SDL_bool inited = SDL_FALSE; const char *im_module; - const char *xmodifiers = SDL_getenv("XMODIFIERS"); + const char *xmodifiers; if (inited == SDL_TRUE) return;