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/ldap_id_cleanup.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/ldap_id_cleanup.c')
-rw-r--r-- | src/providers/ldap/ldap_id_cleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/ldap_id_cleanup.c b/src/providers/ldap/ldap_id_cleanup.c index eb4d42fe..06cdae0a 100644 --- a/src/providers/ldap/ldap_id_cleanup.c +++ b/src/providers/ldap/ldap_id_cleanup.c @@ -226,7 +226,7 @@ static int cleanup_users(struct sdap_options *opts, goto done; } - DEBUG(4, ("Found %d expired user entries!\n", count)); + DEBUG(SSSDBG_FUNC_DATA, ("Found %zu expired user entries!\n", count)); if (count == 0) { ret = EOK; @@ -348,7 +348,7 @@ static int cleanup_groups(TALLOC_CTX *memctx, goto done; } - DEBUG(4, ("Found %d expired group entries!\n", count)); + DEBUG(SSSDBG_FUNC_DATA, ("Found %zu expired group entries!\n", count)); if (count == 0) { ret = EOK; |