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:
parent
23d2ba3445
commit
78fec87fa6
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue