git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
003f4cd
)
bozo-bnode-call-iomgr-softsys-with-proper-casted-args-20010705
author
Derrick Brashear
<shadow@dementia.org>
Fri, 6 Jul 2001 02:15:46 +0000 (
02:15
+0000)
committer
Derrick Brashear
<shadow@dementia.org>
Fri, 6 Jul 2001 02:15:46 +0000 (
02:15
+0000)
iomgr_SoftSys is prototyped to take a char* as second arg
src/bozo/bnode.c
patch
|
blob
|
history
diff --git
a/src/bozo/bnode.c
b/src/bozo/bnode.c
index
7531252
..
fcc5e81
100644
(file)
--- 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);
}
}