Author: trasz
Date: Sat Jun 23 18:51:33 2012
New Revision: 237495
URL: http://svn.freebsd.org/changeset/base/237495
Log:
  MFC r227081 by ed@:
  
  Add missing static keywords for global variables to tools in sbin/.
  
  These tools declare global variables without using the static keyword,
  even though their use is limited to a single C-file, or without placing
  an extern declaration of them in the proper header file.

Modified:
  stable/9/sbin/growfs/growfs.c
Directory Properties:
  stable/9/sbin/growfs/   (props changed)

Modified: stable/9/sbin/growfs/growfs.c
==============================================================================
--- stable/9/sbin/growfs/growfs.c       Sat Jun 23 18:45:32 2012        
(r237494)
+++ stable/9/sbin/growfs/growfs.c       Sat Jun 23 18:51:33 2012        
(r237495)
@@ -116,7 +116,7 @@ union dinode {
        } while (0)
 static ufs2_daddr_t    inoblk;                 /* inode block address */
 static char            inobuf[MAXBSIZE];       /* inode block */
-ino_t                  maxino;                 /* last valid inode */
+static ino_t           maxino;                 /* last valid inode */
 static int             unlabeled;     /* unlabeled partition, e.g. vinum 
volume etc. */
 
 /*
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to