From 7b7b137832357a76ae3b420d45967387b112fc06 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Wed, 9 May 2007 18:38:10 +0000 Subject: [PATCH] Cast Debug(%p) pointer 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 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; } -- 2.39.5