From 64216b72d82527e55fa38d1090f0fd880d2c0471 Mon Sep 17 00:00:00 2001 From: "huiyu.eun" Date: Tue, 1 Aug 2017 19:07:22 +0900 Subject: [PATCH] [SDL_Tizen] Fix VD Svace issue delete errorno Change-Id: I5260a0f8292cff182d6f2ba3f09baff321675345 Signed-off-by: huiyu.eun --- src/video/tizen/SDL_tizenwindow.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video/tizen/SDL_tizenwindow.c b/src/video/tizen/SDL_tizenwindow.c index b6925b3..c9eb058 100755 --- a/src/video/tizen/SDL_tizenwindow.c +++ b/src/video/tizen/SDL_tizenwindow.c @@ -47,7 +47,6 @@ #include #include -#include #define LOAD_FUNC(NAME) \ _this->tizen_rotation_data.NAME = SDL_LoadFunction(_this->tizen_rotation_data.dll_handle, #NAME); \ @@ -93,7 +92,7 @@ void Tizen_ExecuteIndicatorProcess(SDL_WindowData *wind) int ret = execl("/usr/bin/sdl_indicator", "/usr/bin/sdl_indicator", NULL); if(ret == -1) { - SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "[SDL] Failed indicator process error:%s", strerror(errno)); + SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "[SDL] Failed indicator process"); kill(getpid(), SIGKILL); } } -- 2.7.4