From 78fec87fa69b69a68f58ddcf7344d2c8b85086de Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Sat, 22 Mar 2014 19:09:46 -0600 Subject: [PATCH] Threads.C: NULL is not 0 --- cde/programs/dtmail/libDtMail/Common/Threads.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.25.1