prototypes-fixes-20020821
[openafs.git] / src / ubik / ubik.c
index 0132470..4573b68 100644 (file)
@@ -281,7 +281,7 @@ int ubik_ServerInitCommon(myHost, myPort, info, clones, serverList, pathName, db
      * the "steplock" problem in ubik initialization. Defect 11037.
      */
     LWP_CreateProcess(rx_ServerProc, rx_stackSize, RX_PROCESS_PRIORITY,
-                     0, "rx_ServerProc", &junk);
+                     (void *) 0, "rx_ServerProc", &junk);
 
     /* do basic initialization */
     code = uvote_Init();
@@ -296,10 +296,10 @@ int ubik_ServerInitCommon(myHost, myPort, info, clones, serverList, pathName, db
 
     /* now start up async processes */
     code = LWP_CreateProcess(ubeacon_Interact, 16384/*8192*/, LWP_MAX_PRIORITY-1,
-                            0, "beacon", &junk);
+                            (void *) 0, "beacon", &junk);
     if (code) return code;
     code = LWP_CreateProcess(urecovery_Interact, 16384/*8192*/, LWP_MAX_PRIORITY-1,
-                            0, "recovery", &junk);
+                            (void *) 0, "recovery", &junk);
     return code;
 }