From 65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 15 Mar 2006 23:10:38 +0000 Subject: r14462: Fix warning. ber_tag_t is an unsigned int for printing purposes. Jeremy. (This used to be commit 3c33eda430426e40e179799e7341db10c4b2e98e) --- source3/lib/smbldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/smbldap.c') diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index a81829b331..e4cb25104b 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -872,7 +872,7 @@ static int rebindproc_connect_with_state (LDAP *ldap_struct, case LDAP_REQ_EXTENDED: DEBUG(10,("rebindproc_connect_with_state: " "setting last_rebind timestamp " - "(req: 0x%02x)\n", request)); + "(req: 0x%02x)\n", (unsigned int)request)); GetTimeOfDay(&ldap_state->last_rebind); break; default: -- cgit