Module Name: src
Committed By: dholland
Date: Sat Aug 6 16:39:40 UTC 2011
Modified Files:
src/sbin/fsck_ext2fs: pass5.c
Log Message:
Add static to a private function.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sbin/fsck_ext2fs/pass5.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/fsck_ext2fs/pass5.c
diff -u src/sbin/fsck_ext2fs/pass5.c:1.17 src/sbin/fsck_ext2fs/pass5.c:1.18
--- src/sbin/fsck_ext2fs/pass5.c:1.17 Mon Oct 19 18:41:08 2009
+++ src/sbin/fsck_ext2fs/pass5.c Sat Aug 6 16:39:40 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: pass5.c,v 1.17 2009/10/19 18:41:08 bouyer Exp $ */
+/* $NetBSD: pass5.c,v 1.18 2011/08/06 16:39:40 dholland Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@@ -58,7 +58,7 @@
#if 0
static char sccsid[] = "@(#)pass5.c 8.6 (Berkeley) 11/30/94";
#else
-__RCSID("$NetBSD: pass5.c,v 1.17 2009/10/19 18:41:08 bouyer Exp $");
+__RCSID("$NetBSD: pass5.c,v 1.18 2011/08/06 16:39:40 dholland Exp $");
#endif
#endif /* not lint */
@@ -77,7 +77,7 @@
#include "extern.h"
-void print_bmap(u_char *,u_int32_t);
+static void print_bmap(u_char *,u_int32_t);
void
pass5(void)
@@ -262,7 +262,7 @@
free(bbmap);
}
-void
+static void
print_bmap(u_char *map, u_int32_t size)
{
uint32_t i, j;