From c76bc1181ecf3790d3e230f321008591a4ee148a Mon Sep 17 00:00:00 2001 From: Thomas Galliano Date: Tue, 1 Jul 2008 04:07:27 +0000 Subject: [PATCH] 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) --- src/ubik/ubik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.5