From: Jeremy Allison Date: Wed, 15 Mar 2006 23:10:38 +0000 (+0000) Subject: r14462: Fix warning. ber_tag_t is an unsigned int for X-Git-Url: http://git.samba.org/samba.git/?p=tprouty%2Fsamba.git;a=commitdiff_plain;h=65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b r14462: Fix warning. ber_tag_t is an unsigned int for printing purposes. Jeremy. (This used to be commit 3c33eda430426e40e179799e7341db10c4b2e98e) --- 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: