]> git.sur5r.net Git - openldap/commitdiff
Printf %p expects a void pointer.
authorHallvard Furuseth <hallvard@openldap.org>
Thu, 22 May 2003 22:00:54 +0000 (22:00 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Thu, 22 May 2003 22:00:54 +0000 (22:00 +0000)
Other pointers may have different representation.

servers/slapd/back-ldap/bind.c

index ac106fbd09262e3170b496f2d31098607b97f187..015660a7d690433de226cb1aabfff6e7ff8e21ed 100644 (file)
@@ -351,10 +351,10 @@ ldap_back_getconn(Operation *op, SlapReply *rs)
 
 #ifdef NEW_LOGGING
                LDAP_LOG( BACK_LDAP, INFO, 
-                       "ldap_back_getconn: conn %p inserted\n", lc, 0, 0);
+                       "ldap_back_getconn: conn %p inserted\n", (void *) lc, 0, 0);
 #else /* !NEW_LOGGING */
                Debug( LDAP_DEBUG_TRACE,
-                       "=>ldap_back_getconn: conn %p inserted\n", lc, 0, 0 );
+                       "=>ldap_back_getconn: conn %p inserted\n", (void *) lc, 0, 0 );
 #endif /* !NEW_LOGGING */
        
                /* Err could be -1 in case a duplicate ldapconn is inserted */
@@ -370,10 +370,10 @@ ldap_back_getconn(Operation *op, SlapReply *rs)
 #ifdef NEW_LOGGING
                LDAP_LOG( BACK_LDAP, INFO, 
                        "ldap_back_getconn: conn %p fetched\n", 
-                       lc, 0, 0 );
+                       (void *) lc, 0, 0 );
 #else /* !NEW_LOGGING */
                Debug( LDAP_DEBUG_TRACE,
-                       "=>ldap_back_getconn: conn %p fetched\n", lc, 0, 0 );
+                       "=>ldap_back_getconn: conn %p fetched\n", (void *) lc, 0, 0 );
 #endif /* !NEW_LOGGING */
        }