]> git.sur5r.net Git - openldap/commitdiff
Add cast to avoid mismatch
authorKurt Zeilenga <kurt@openldap.org>
Fri, 6 Oct 2000 21:16:26 +0000 (21:16 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 6 Oct 2000 21:16:26 +0000 (21:16 +0000)
libraries/libldap_r/thr_stub.c

index b613186a05f02734c1ce040acfc51833c6428394..9048198e19b1e2164ebec3bf8eaa7a5d91162ee8 100644 (file)
@@ -147,7 +147,7 @@ ldap_pvt_thread_pool_init (
        ldap_pvt_thread_pool_t *pool_out,
        int max_concurrency, int max_pending )
 {
-       *pool_out = NULL;
+       *pool_out = (ldap_pvt_thread_pool_t) 0;
        return(0);
 }