From 3c33eda430426e40e179799e7341db10c4b2e98e Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 15 Mar 2006 23:10:38 +0000 Subject: [PATCH] r14462: Fix warning. ber_tag_t is an unsigned int for printing purposes. Jeremy. --- source/lib/smbldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/smbldap.c b/source/lib/smbldap.c index a81829b3313..e4cb25104ba 100644 --- a/source/lib/smbldap.c +++ b/source/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: -- 2.11.4.GIT