--- gobex/gobex.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gobex/gobex.c b/gobex/gobex.c index 93be21f..173912f 100644 --- a/gobex/gobex.c +++ b/gobex/gobex.c @@ -643,8 +643,8 @@ static void handle_request(GObex *obex, GObexPacket *req) op = g_obex_packet_get_operation(req, NULL); - match = g_slist_find_custom(obex->req_handlers, GUINT_TO_POINTER(op), - req_handler_cmpop); + match = g_slist_find_custom(obex->req_handlers, + GUINT_TO_POINTER((guint)op), req_handler_cmpop); if (match) { struct req_handler *handler = match->data; handler->func(obex, req, handler->user_data); -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html