change 'data' arg of fo_ioctl to void * to match file.h
This commit is contained in:
parent
f80ec0a8a0
commit
f1a857b8af
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: netbsd32_machdep.h,v 1.11 2003/01/18 06:55:21 thorpej Exp $ */
|
||||
/* $NetBSD: netbsd32_machdep.h,v 1.12 2003/04/16 08:56:42 dsl Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998, 2001 Matthew R. Green
|
||||
|
@ -82,6 +82,6 @@ extern char netbsd32_esigcode[], netbsd32_sigcode[];
|
|||
* Need to plug into get sparc specific ioctl's.
|
||||
*/
|
||||
#define NETBSD32_MD_IOCTL /* enable netbsd32_md_ioctl() */
|
||||
int netbsd32_md_ioctl (struct file *, netbsd32_u_long, caddr_t, struct proc *);
|
||||
int netbsd32_md_ioctl(struct file *, netbsd32_u_long, void *, struct proc *);
|
||||
|
||||
#endif /* _MACHINE_NETBSD32_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: netbsd32_machdep.c,v 1.30 2003/02/09 19:44:20 martin Exp $ */
|
||||
/* $NetBSD: netbsd32_machdep.c,v 1.31 2003/04/16 08:56:43 dsl Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998, 2001 Matthew R. Green
|
||||
|
@ -1044,7 +1044,7 @@ int
|
|||
netbsd32_md_ioctl(fp, com, data32, p)
|
||||
struct file *fp;
|
||||
netbsd32_u_long com;
|
||||
caddr_t data32;
|
||||
void *data32;
|
||||
struct proc *p;
|
||||
{
|
||||
u_int size;
|
||||
|
|
Loading…
Reference in New Issue