Skip to content

Commit c5e68a1

Browse files
committed
Fix the declaration of compat_43_wait() (int * -> register_t *), pointed
out by Chris Demetriou.
1 parent aa2a3fb commit c5e68a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sys/compat/common/kern_exit_43.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $NetBSD: kern_exit_43.c,v 1.1 1995/06/24 20:16:07 christos Exp $ */
1+
/* $NetBSD: kern_exit_43.c,v 1.2 1995/09/29 05:18:41 thorpej Exp $ */
22

33
/*
44
* Copyright (c) 1982, 1986, 1989, 1991, 1993
@@ -81,7 +81,7 @@ int
8181
compat_43_wait(p, uap, retval)
8282
struct proc *p;
8383
void *uap;
84-
int *retval;
84+
register_t *retval;
8585
{
8686
caddr_t sg = stackgap_init(p->p_emul);
8787
int error;

0 commit comments

Comments
 (0)