From: Thomas Galliano Date: Tue, 1 Jul 2008 04:07:27 +0000 (+0000) Subject: STABLE14-ubik-lwp-createprocess-64-bit-20080630 X-Git-Tag: openafs-stable-1_4_8pre1~57 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c76bc1181ecf3790d3e230f321008591a4ee148a;p=packages%2Fo%2Fopenafs.git STABLE14-ubik-lwp-createprocess-64-bit-20080630 LICENSE IPL10 FIXES 104732 use NULL and not (void *)0 to avoid issues on 64 bit platforms (cherry picked from commit e22a5cc8afe889d5d76ecf44a63860e12f1effbf) --- diff --git a/src/ubik/ubik.c b/src/ubik/ubik.c index 62b8c349f..bc08ca2b6 100644 --- a/src/ubik/ubik.c +++ b/src/ubik/ubik.c @@ -263,7 +263,7 @@ ubik_ServerInitCommon(afs_int32 myHost, short myPort, * the "steplock" problem in ubik initialization. Defect 11037. */ LWP_CreateProcess(rx_ServerProc, rx_stackSize, RX_PROCESS_PRIORITY, - (void *)0, "rx_ServerProc", &junk); + NULL, "rx_ServerProc", &junk); /* do basic initialization */ code = uvote_Init();