Minor style fixes.
Sponsored by: The FreeBSD Foundation MFC after: 3 days
This commit is contained in:
parent
39cbdda0d1
commit
cf53034fc7
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=313797
@ -208,7 +208,7 @@ devfs_newdirent(char *name, int namelen)
|
||||
struct dirent d;
|
||||
|
||||
d.d_namlen = namelen;
|
||||
i = sizeof (*de) + GENERIC_DIRSIZ(&d);
|
||||
i = sizeof(*de) + GENERIC_DIRSIZ(&d);
|
||||
de = malloc(i, M_DEVFS3, M_WAITOK | M_ZERO);
|
||||
de->de_dirent = (struct dirent *)(de + 1);
|
||||
de->de_dirent->d_namlen = namelen;
|
||||
@ -246,7 +246,8 @@ devfs_parent_dirent(struct devfs_dirent *de)
|
||||
}
|
||||
|
||||
struct devfs_dirent *
|
||||
devfs_vmkdir(struct devfs_mount *dmp, char *name, int namelen, struct devfs_dirent *dotdot, u_int inode)
|
||||
devfs_vmkdir(struct devfs_mount *dmp, char *name, int namelen,
|
||||
struct devfs_dirent *dotdot, u_int inode)
|
||||
{
|
||||
struct devfs_dirent *dd;
|
||||
struct devfs_dirent *de;
|
||||
|
Loading…
Reference in New Issue
Block a user