svn commit: r313797 - head/sys/fs/devfs

Konstantin Belousov kib at FreeBSD.org
Thu Feb 16 06:31:37 UTC 2017


Author: kib
Date: Thu Feb 16 06:31:36 2017
New Revision: 313797
URL: https://svnweb.freebsd.org/changeset/base/313797

Log:
  Minor style fixes.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days

Modified:
  head/sys/fs/devfs/devfs_devs.c

Modified: head/sys/fs/devfs/devfs_devs.c
==============================================================================
--- head/sys/fs/devfs/devfs_devs.c	Thu Feb 16 06:16:50 2017	(r313796)
+++ head/sys/fs/devfs/devfs_devs.c	Thu Feb 16 06:31:36 2017	(r313797)
@@ -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 
 }
 
 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;


More information about the svn-src-all mailing list