From: Jon Trulson Date: Sun, 23 Mar 2014 01:09:46 +0000 (-0600) Subject: Threads.C: NULL is not 0 X-Git-Tag: 2.2.2~39 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=78fec87fa69b69a68f58ddcf7344d2c8b85086de;p=oweals%2Fcde.git Threads.C: NULL is not 0 --- diff --git a/cde/programs/dtmail/libDtMail/Common/Threads.C b/cde/programs/dtmail/libDtMail/Common/Threads.C index ce0664d1..f1059b1c 100644 --- a/cde/programs/dtmail/libDtMail/Common/Threads.C +++ b/cde/programs/dtmail/libDtMail/Common/Threads.C @@ -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 }