diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-07-17 14:03:41 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-11 19:44:54 +0200 |
commit | 69c83119c0504fd1590299b8a4ecdabf86a8f18d (patch) | |
tree | 7cfbc29a203d8a08ebc703891857fb4f22fa8ee6 /src/providers/proxy/proxy_init.c | |
parent | 10a9ff0c9b4f347ec24dab887a538b37274ee498 (diff) | |
download | sssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.tar.gz sssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.tar.xz sssd-69c83119c0504fd1590299b8a4ecdabf86a8f18d.zip |
Fix formating of variables with type defined in stdint.h
Diffstat (limited to 'src/providers/proxy/proxy_init.c')
-rw-r--r-- | src/providers/proxy/proxy_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/providers/proxy/proxy_init.c b/src/providers/proxy/proxy_init.c index 2b154a070..ec2b19356 100644 --- a/src/providers/proxy/proxy_init.c +++ b/src/providers/proxy/proxy_init.c @@ -22,6 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "util/sss_format.h" #include "providers/proxy/proxy.h" static int client_registration(DBusMessage *message, @@ -415,7 +416,7 @@ static int client_registration(DBusMessage *message, return EIO; } - DEBUG(4, ("Proxy client [%ld] connected\n", cli_id)); + DEBUG(SSSDBG_FUNC_DATA, ("Proxy client [%"PRIu32"] connected\n", cli_id)); /* Check the hash table */ key.type = HASH_KEY_ULONG; |