diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-07-17 12:41:33 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-11 19:44:54 +0200 |
commit | 0e65abe5cf2abf5d4b431cf6bd161b419f07901d (patch) | |
tree | af685729a48d4f1874113f25011484022337b13f /src/providers/ldap/sdap_async_initgroups_ad.c | |
parent | 71e234151ddc6b50576364c30bda2b72264b1083 (diff) | |
download | sssd-0e65abe5cf2abf5d4b431cf6bd161b419f07901d.tar.gz sssd-0e65abe5cf2abf5d4b431cf6bd161b419f07901d.tar.bz2 sssd-0e65abe5cf2abf5d4b431cf6bd161b419f07901d.zip |
Fix formating of variables with type: size_t
Diffstat (limited to 'src/providers/ldap/sdap_async_initgroups_ad.c')
-rw-r--r-- | src/providers/ldap/sdap_async_initgroups_ad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_initgroups_ad.c b/src/providers/ldap/sdap_async_initgroups_ad.c index e5649a2b..efaa247d 100644 --- a/src/providers/ldap/sdap_async_initgroups_ad.c +++ b/src/providers/ldap/sdap_async_initgroups_ad.c @@ -212,7 +212,7 @@ sdap_get_ad_match_rule_initgroups_step(struct tevent_req *subreq) } DEBUG(SSSDBG_TRACE_LIBS, - ("Search for users returned %d results\n", count)); + ("Search for users returned %zu results\n", count)); /* Add this batch of groups to the list */ if (count > 0) { |