From 61308bc09f058a04c44c8add7067faf6ca34b594 Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 20 Jun 2004 03:11:19 +0000 Subject: [PATCH] Backed out previous commit. The dev_t -> `struct cdev *' changes have lots of errors. Blind substitution of "dev_t foo" by "struct cdev *foo" in comments usually just created an English syntax error (e.g., "struct cdev *changes"), but here it did less than that since the dev_t is a user dev_t. --- sys/ufs/ufs/dinode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ufs/ufs/dinode.h b/sys/ufs/ufs/dinode.h index 78e7e2a1501f..cedecd9f7cd5 100644 --- a/sys/ufs/ufs/dinode.h +++ b/sys/ufs/ufs/dinode.h @@ -131,7 +131,7 @@ struct ufs2_dinode { * The di_db fields may be overlaid with other information for * file types that do not have associated disk storage. Block * and character devices overlay the first data block with their - * struct cdev *value. Short symbolic links place their path in the + * dev_t value. Short symbolic links place their path in the * di_db area. */ #define di_rdev di_db[0]