1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

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

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
}