Module Name:    src
Committed By:   dholland
Date:           Sun Jan 13 22:59:31 UTC 2013

Modified Files:
        src/sbin/dump: ffs_inode.c

Log Message:
Use static; remove unused global var this uncovered.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sbin/dump/ffs_inode.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/dump/ffs_inode.c
diff -u src/sbin/dump/ffs_inode.c:1.18 src/sbin/dump/ffs_inode.c:1.19
--- src/sbin/dump/ffs_inode.c:1.18	Sun Jul 20 01:20:22 2008
+++ src/sbin/dump/ffs_inode.c	Sun Jan 13 22:59:31 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: ffs_inode.c,v 1.18 2008/07/20 01:20:22 lukem Exp $ */
+/*	$NetBSD: ffs_inode.c,v 1.19 2013/01/13 22:59:31 dholland Exp $ */
 
 /*-
  * Copyright (c) 1980, 1991, 1993, 1994
@@ -36,7 +36,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19
 #endif /* not lint */
 
 #ifndef lint
-__RCSID("$NetBSD: ffs_inode.c,v 1.18 2008/07/20 01:20:22 lukem Exp $");
+__RCSID("$NetBSD: ffs_inode.c,v 1.19 2013/01/13 22:59:31 dholland Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -60,10 +60,9 @@ __RCSID("$NetBSD: ffs_inode.c,v 1.18 200
 
 #include "dump.h"
 
-struct fs *sblock;
+static struct fs *sblock;
 
 static off_t sblock_try[] = SBLOCKSEARCH;
-off_t sblockloc;
 
 int is_ufs2;
 

Reply via email to