Fix bug on adding disable filter for appinfo filter
[platform/core/appfw/pkgmgr-info.git] / src / pkgmgrinfo_appinfo.c
index c978a8e..a826ec3 100644 (file)
@@ -358,8 +358,7 @@ static void __free_applications(gpointer data)
 static gint __disable_chk_func(gconstpointer data1, gconstpointer data2)
 {
        pkgmgrinfo_node_x *node = (pkgmgrinfo_node_x *)data1;
-       pkgmgrinfo_appinfo_disable_type *value =
-                       (pkgmgrinfo_appinfo_disable_type *)data2;
+       pkgmgrinfo_appinfo_disable_type value = GPOINTER_TO_INT(data2);
 
        if (value == E_APPINFO_DISABLE_TYPE_PKG)
                return (node->prop == E_PMINFO_APPINFO_PROP_PKG_DISABLE)
@@ -377,7 +376,7 @@ static bool __check_disable_filter_exist(pkgmgrinfo_filter_x *filter,
        if (filter == NULL)
                return false;
 
-       link = g_slist_find_custom(filter->list, &type, __disable_chk_func);
+       link = g_slist_find_custom(filter->list, GINT_TO_POINTER(type), __disable_chk_func);
        if (link)
                return true;