Threads.C: NULL is not 0

This commit is contained in:
Jon Trulson 2014-03-22 19:09:46 -06:00
parent 23d2ba3445
commit 78fec87fa6
1 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ ThreadCreate(
#else
ThreadEntryPoint, void*)
{
return(NULL);
return(0);
}
#endif
@ -476,7 +476,7 @@ ThreadSelf(void)
#if defined(POSIX_THREADS)
return(thr_self());
#else
return(NULL);
return(0);
#endif
}