From: Hallvard Furuseth Date: Sun, 1 Jul 2007 14:17:28 +0000 (+0000) Subject: ITS#5035 - cast printf %p argument to void*. X-Git-Tag: OPENLDAP_REL_ENG_2_3_37~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb3476f8e45b6ee48585d0f46c96ba1f0e761206;p=thirdparty%2Fopenldap.git ITS#5035 - cast printf %p argument to void*. --- diff --git a/libraries/libldap/request.c b/libraries/libldap/request.c index c147c2529a..8b43f02b59 100644 --- a/libraries/libldap/request.c +++ b/libraries/libldap/request.c @@ -482,7 +482,7 @@ ldap_new_connection( LDAP *ld, LDAPURLDesc *srvlist, int use_ldsb, "ldap_new_connection %p: " "unexpected response %d " "from BIND request id=%d\n", - ld, ldap_msgtype( res ), msgid ); + (void *)ld, ldap_msgtype( res ), msgid ); err = -1; break; }