From: Derrick Brashear Date: Fri, 6 Jul 2001 02:15:46 +0000 (+0000) Subject: bozo-bnode-call-iomgr-softsys-with-proper-casted-args-20010705 X-Git-Tag: openafs-stable-1_1_0~49 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=b1c10226c4f4d2b178a8d7b5a55f432c2cda8193 bozo-bnode-call-iomgr-softsys-with-proper-casted-args-20010705 iomgr_SoftSys is prototyped to take a char* as second arg --- diff --git a/src/bozo/bnode.c b/src/bozo/bnode.c index 7531252..fcc5e81 100644 --- a/src/bozo/bnode.c +++ b/src/bozo/bnode.c @@ -717,9 +717,9 @@ bnode_Int(int asignal) extern void bozo_ShutdownAndExit(); if (asignal == SIGQUIT) { - IOMGR_SoftSig(bozo_ShutdownAndExit, asignal); + IOMGR_SoftSig(bozo_ShutdownAndExit, (char *)asignal); } else { - IOMGR_SoftSig(bnode_SoftInt, asignal); + IOMGR_SoftSig(bnode_SoftInt, (char *)asignal); } }