summaryrefslogtreecommitdiffstats
path: root/sys/netatm/atm_subr.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-11-08 18:27:30 +0000
committerjhb <jhb@FreeBSD.org>2002-11-08 18:27:30 +0000
commitb72917b520dafbce4c1cc804dc93887d66c593b3 (patch)
tree291ae2bd3be9306179924d18340c26cf8e4f0b9c /sys/netatm/atm_subr.c
parent451dec5f86ca56ab2475ea41c94afa7b4fc2b919 (diff)
downloadFreeBSD-src-b72917b520dafbce4c1cc804dc93887d66c593b3.zip
FreeBSD-src-b72917b520dafbce4c1cc804dc93887d66c593b3.tar.gz
- Change the ATM stack functions to use intptr_t instead of int for opaque
arguments. - Fix a few other places that assumed that sizeof(int) == sizeof(void *). Reviewed by: mdodd
Diffstat (limited to 'sys/netatm/atm_subr.c')
-rw-r--r--sys/netatm/atm_subr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netatm/atm_subr.c b/sys/netatm/atm_subr.c
index 97defe9..c76b245 100644
--- a/sys/netatm/atm_subr.c
+++ b/sys/netatm/atm_subr.c
@@ -380,11 +380,11 @@ atm_untimeout(tip)
int
atm_stack_enq(cmd, func, token, cvp, arg1, arg2)
int cmd;
- void (*func)(int, void *, int, int);
+ void (*func)(int, void *, intptr_t, intptr_t);
void *token;
Atm_connvc *cvp;
- int arg1;
- int arg2;
+ intptr_t arg1;
+ intptr_t arg2;
{
struct stackq_entry *sqp;
int s = splnet();
OpenPOWER on IntegriCloud