From d34777f5e2dd1bccedbd348fccd4e64c2043ea29 Mon Sep 17 00:00:00 2001 From: Alex Hornung Date: Fri, 11 Sep 2009 08:51:03 +0100 Subject: [PATCH] conf.h - Fix buildworld * Don't use cdev_t in struct cdev, but rather use struct cdev itself. Reported-by: Hasso Tepper --- sys/sys/conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 6d4e052c2c..a7ba3e2fdb 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -71,7 +71,7 @@ struct cdev { uid_t si_uid; gid_t si_gid; int si_perms; - cdev_t si_rdev; + struct cdev *si_rdev; TAILQ_ENTRY(cdev) link; int si_uminor; int si_umajor; -- 2.11.4.GIT