svn commit: r312601 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Sat Jan 21 18:56:59 UTC 2017


Author: mjg
Date: Sat Jan 21 18:56:58 2017
New Revision: 312601
URL: https://svnweb.freebsd.org/changeset/base/312601

Log:
  vfs: fix whitespace damage in r312600
  
  While here wrap the previously overly long line so that it fits 80 chars.

Modified:
  head/sys/kern/vfs_vnops.c

Modified: head/sys/kern/vfs_vnops.c
==============================================================================
--- head/sys/kern/vfs_vnops.c	Sat Jan 21 18:38:16 2017	(r312600)
+++ head/sys/kern/vfs_vnops.c	Sat Jan 21 18:56:58 2017	(r312601)
@@ -1547,8 +1547,8 @@ retry:
 	error = VOP_LOCK1(vp, flags, file, line);
 	flags &= ~LK_INTERLOCK;	/* Interlock is always dropped. */
 	KASSERT((flags & LK_RETRY) == 0 || error == 0,
-			("LK_RETRY set with incompatible flags (0x%x) or an error occurred (%d)",
-			 flags, error));
+	    ("LK_RETRY set with incompatible flags (0x%x) or "
+	    " an error occurred (%d)", flags, error));
 	if (flags & LK_RETRY) {
 		if ((error != 0))
 			goto retry;


More information about the svn-src-head mailing list