From: Hallvard Furuseth Date: Wed, 9 May 2007 18:38:10 +0000 (+0000) Subject: Cast Debug(%p) pointer argument to void* X-Git-Tag: OPENLDAP_REL_ENG_2_4_MP~514 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7b7b137832357a76ae3b420d45967387b112fc06;p=openldap Cast Debug(%p) pointer argument to void* --- diff --git a/libraries/libldap/request.c b/libraries/libldap/request.c index 0131b4ef0d..86b36d66ed 100644 --- a/libraries/libldap/request.c +++ b/libraries/libldap/request.c @@ -512,7 +512,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; }