From 188cb3f63b84c60dede3a67475d589c1c0fb59cd Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 28 Jan 2003 09:47:50 +0000 Subject: Use a void * to carry the private data for return-call'ed ioctl requests. Amongst other things this avoids a complex workaround in the userland regression bits. --- sys/geom/geom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/geom.h b/sys/geom/geom.h index fbcc7fd..8fc905a 100644 --- a/sys/geom/geom.h +++ b/sys/geom/geom.h @@ -262,7 +262,7 @@ struct g_ioctl { int fflag; struct thread *td; d_ioctl_t *func; - dev_t dev; + void *dev; }; #ifdef _KERNEL -- cgit v1.1