From dfbb6e11c851d22b93edf5f264d60e148c321980 Mon Sep 17 00:00:00 2001 From: Taejin Woo Date: Wed, 23 Mar 2016 18:11:00 +0900 Subject: [PATCH] Fix the build fail incompatible pointer type Change-Id: I16c05ad09607803ee3c2ea17fddc2090971a68b4 Signed-off-by: Taejin Woo --- bt-api/bt-event-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bt-api/bt-event-handler.c b/bt-api/bt-event-handler.c index cd6a45f..ec16d4f 100755 --- a/bt-api/bt-event-handler.c +++ b/bt-api/bt-event-handler.c @@ -1947,7 +1947,7 @@ void __bt_pbap_client_event_filter(GDBusConnection *connection, } else if (strcasecmp(signal_name, BT_PBAP_VCARD_LIST) == 0) { bt_pbap_vcard_list_t vc_list = { { { 0 } }, }; char *address = NULL; - unsigned int count = 0; + gsize count = 0; gchar **list = NULL; GVariant *string_var; int success = -1; @@ -1998,7 +1998,7 @@ void __bt_pbap_client_event_filter(GDBusConnection *connection, } else if (strcasecmp(signal_name, BT_PBAP_SEARCH_PHONEBOOK) == 0) { bt_pbap_phonebook_search_list_t vc_list = { { { 0 } }, }; char *address = NULL; - unsigned int count = 0; + gsize count = 0; gchar **list = NULL; GVariant *string_var; int success = -1; -- 2.7.4