From 69c83119c0504fd1590299b8a4ecdabf86a8f18d Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Wed, 17 Jul 2013 14:03:41 +0200 Subject: Fix formating of variables with type defined in stdint.h --- src/providers/ldap/sdap_access.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/providers/ldap') diff --git a/src/providers/ldap/sdap_access.c b/src/providers/ldap/sdap_access.c index 9ea90775..a4c63865 100644 --- a/src/providers/ldap/sdap_access.c +++ b/src/providers/ldap/sdap_access.c @@ -338,8 +338,9 @@ static errno_t sdap_account_expired_ad(struct pam_data *pd, expiration_time = ldb_msg_find_attr_as_uint64(user_entry, SYSDB_AD_ACCOUNT_EXPIRES, 0); - DEBUG(9, ("Expiration time for user [%s] is [%lld].\n", - pd->user, expiration_time)); + DEBUG(SSSDBG_TRACE_ALL, + ("Expiration time for user [%s] is [%"PRIu64"].\n", + pd->user, expiration_time)); if (uac & UAC_ACCOUNTDISABLE) { -- cgit