>From 5f38cfced7ed99a57f69e578b831c3ae2ca81ee8 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 13 Jul 2013 15:34:00 +0200 Subject: [PATCH 06/16] Use the same variable type like in struct ldb_message_element struct ldb_message_element.num_values is unsigned This patch indirectly fixes printf format string warning. --- src/providers/ldap/sdap_async_groups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/ldap/sdap_async_groups.c b/src/providers/ldap/sdap_async_groups.c index c3b5914a68713f052792be4f6ddad23e18a820a3..423d9de405c8da2005059001d7f2609c37c5e219 100644 --- a/src/providers/ldap/sdap_async_groups.c +++ b/src/providers/ldap/sdap_async_groups.c @@ -1066,7 +1066,7 @@ done: static int sdap_process_missing_member_2307bis(struct tevent_req *req, char *user_dn, - int num_users) + unsigned num_users) { struct sdap_process_group_state *grp_state = tevent_req_data(req, struct sdap_process_group_state); -- 1.8.3.1