From bb3476f8e45b6ee48585d0f46c96ba1f0e761206 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Sun, 1 Jul 2007 14:17:28 +0000 Subject: [PATCH] ITS#5035 - cast printf %p argument to void*. --- libraries/libldap/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2