svn commit: r203782 - head/lib/libufs

Warner Losh imp at FreeBSD.org
Thu Feb 11 17:30:30 UTC 2010


Author: imp
Date: Thu Feb 11 17:30:30 2010
New Revision: 203782
URL: http://svn.freebsd.org/changeset/base/203782

Log:
  i doesn't need to be signed here, make it unsigned.

Modified:
  head/lib/libufs/sblock.c

Modified: head/lib/libufs/sblock.c
==============================================================================
--- head/lib/libufs/sblock.c	Thu Feb 11 15:36:39 2010	(r203781)
+++ head/lib/libufs/sblock.c	Thu Feb 11 17:30:30 2010	(r203782)
@@ -93,7 +93,7 @@ int
 sbwrite(struct uufsd *disk, int all)
 {
 	struct fs *fs;
-	int i;
+	unsigned i;
 
 	ERROR(disk, NULL);
 


More information about the svn-src-head mailing list