Fix 64-bit build failure 62/170162/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Wed, 14 Feb 2018 01:58:32 +0000 (10:58 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Wed, 14 Feb 2018 01:58:32 +0000 (10:58 +0900)
Change-Id: If281ed7822af3baa151062956846576ad69932bb

src/option.cpp

index 0585b5d..b64f9fe 100644 (file)
@@ -425,8 +425,8 @@ static char *_main_gl_text_get(void *data, Evas_Object *obj, const char *part)
 static Eina_Bool tv_check_state_get(Evas_Object *label)
 {
     LOGD("tv_check_state_get in");
-    int state = 0;
-    state = (int)evas_object_data_get(label, CHECK_STATE);
+    long state = 0;
+    state = (long)evas_object_data_get(label, CHECK_STATE);
     return (state == 1)? EINA_TRUE:EINA_FALSE;
 }