svn commit: r234420 - head/sbin/growfs

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Apr 18 13:50:18 UTC 2012


Author: trasz
Date: Wed Apr 18 13:50:17 2012
New Revision: 234420
URL: http://svn.freebsd.org/changeset/base/234420

Log:
  Style.

Modified:
  head/sbin/growfs/growfs.c

Modified: head/sbin/growfs/growfs.c
==============================================================================
--- head/sbin/growfs/growfs.c	Wed Apr 18 12:51:48 2012	(r234419)
+++ head/sbin/growfs/growfs.c	Wed Apr 18 13:50:17 2012	(r234420)
@@ -1235,7 +1235,7 @@ charsperline(void)
 		columns = 80;	/* last resort */
 
 	DBG_LEAVE;
-	return columns;
+	return (columns);
 }
 
 /*
@@ -1526,7 +1526,7 @@ main(int argc, char **argv)
 	DBG_CLOSE;
 
 	DBG_LEAVE;
-	return 0;
+	return (0);
 }
 
 /*


More information about the svn-src-all mailing list