svn commit: r233300 - head/lib/libc/gen

Sergey Kandaurov pluknet at FreeBSD.org
Thu Mar 22 09:51:31 UTC 2012


Author: pluknet
Date: Thu Mar 22 09:51:31 2012
New Revision: 233300
URL: http://svn.freebsd.org/changeset/base/233300

Log:
  Fix style. Somehow I managed to lost a space when copy&paste.
  
  Pointed out by:	stefanf

Modified:
  head/lib/libc/gen/fstab.c

Modified: head/lib/libc/gen/fstab.c
==============================================================================
--- head/lib/libc/gen/fstab.c	Thu Mar 22 09:50:16 2012	(r233299)
+++ head/lib/libc/gen/fstab.c	Thu Mar 22 09:51:31 2012	(r233300)
@@ -91,7 +91,7 @@ fixfsfile()
 	struct stat sb;
 	struct statfs sf;
 
-	if (_fs_fstab.fs_file != NULL &&strcmp(_fs_fstab.fs_file, "/") != 0)
+	if (_fs_fstab.fs_file != NULL && strcmp(_fs_fstab.fs_file, "/") != 0)
 		return;
 	if (statfs("/", &sf) != 0)
 		return;


More information about the svn-src-head mailing list