[SDL_Tizen] Fix VD Svace issue 66/141766/1
authorhuiyu.eun <huiyu.eun@samsung.com>
Tue, 1 Aug 2017 10:07:22 +0000 (19:07 +0900)
committerhuiyu.eun <huiyu.eun@samsung.com>
Tue, 1 Aug 2017 10:13:02 +0000 (19:13 +0900)
delete errorno

Change-Id: I5260a0f8292cff182d6f2ba3f09baff321675345
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
src/video/tizen/SDL_tizenwindow.c

index b6925b3..c9eb058 100755 (executable)
@@ -47,7 +47,6 @@
 
 #include <Ecore_Ipc.h>
 #include <unistd.h>
-#include <errno.h>
 
 #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);
         }
     }