Skip to content
Snippets Groups Projects
Commit 42fdd376 authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

replace integer argument NULL with 0

parent c98892cb
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ start_replica_thread(
)
{
/* POSIX_THREADS or compatible */
if ( ldap_pvt_thread_create( &(ri->ri_tid), NULL, replicate,
if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate,
(void *) ri ) != 0 ) {
Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
ri->ri_hostname, ri->ri_port, 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment