From 0e65abe5cf2abf5d4b431cf6bd161b419f07901d Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 17 Jul 2013 12:41:33 +0200 Subject: Fix formating of variables with type: size_t --- src/providers/ldap/sdap_async_users.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/providers/ldap/sdap_async_users.c') diff --git a/src/providers/ldap/sdap_async_users.c b/src/providers/ldap/sdap_async_users.c index 353dc3992..860e8feaf 100644 --- a/src/providers/ldap/sdap_async_users.c +++ b/src/providers/ldap/sdap_async_users.c @@ -697,7 +697,8 @@ static void sdap_get_users_process(struct tevent_req *subreq) return; } - DEBUG(6, ("Search for users, returned %d results.\n", count)); + DEBUG(SSSDBG_TRACE_FUNC, + ("Search for users, returned %zu results.\n", count)); if (state->enumeration || count == 0) { /* No users found in this search or enumerating */ @@ -758,7 +759,7 @@ static void sdap_get_users_process(struct tevent_req *subreq) return; } - DEBUG(9, ("Saving %d Users - Done\n", state->count)); + DEBUG(SSSDBG_TRACE_ALL, ("Saving %zu Users - Done\n", state->count)); tevent_req_done(req); } -- cgit