projects
/
oweals
/
cde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23d2ba3
)
Threads.C: NULL is not 0
author
Jon Trulson
<jon@radscan.com>
Sun, 23 Mar 2014 01:09:46 +0000
(19:09 -0600)
committer
Jon Trulson
<jon@radscan.com>
Sun, 23 Mar 2014 01:09:46 +0000
(19:09 -0600)
cde/programs/dtmail/libDtMail/Common/Threads.C
patch
|
blob
|
history
diff --git
a/cde/programs/dtmail/libDtMail/Common/Threads.C
b/cde/programs/dtmail/libDtMail/Common/Threads.C
index ce0664d18184043e796c61bc4412e367b2cadd47..f1059b1c22e84677572e862db575f23937b28605 100644
(file)
--- 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
}