diff options
author | Jeremy Allison <jra@samba.org> | 2006-03-15 23:10:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:31 -0500 |
commit | 65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b (patch) | |
tree | 7a23e24ff86240c1a50f03a09d3dd37fcc98058d /source3/lib | |
parent | f04d5530cc9ec849edc39c86dbe3946f054d8178 (diff) | |
download | samba-65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b.tar.gz samba-65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b.tar.bz2 samba-65fa8a1a4575ba4e5a0bd3c2285b7e19d969a06b.zip |
r14462: Fix warning. ber_tag_t is an unsigned int for
printing purposes.
Jeremy.
(This used to be commit 3c33eda430426e40e179799e7341db10c4b2e98e)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/smbldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |