From d7a6ab28035779065026b70dca440892d819c0bc Mon Sep 17 00:00:00 2001 From: eivind Date: Mon, 9 Feb 1998 06:11:36 +0000 Subject: Staticize. --- sys/fs/cd9660/cd9660_node.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/fs/cd9660/cd9660_node.c') diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c index 7220d1e..a7a971b 100644 --- a/sys/fs/cd9660/cd9660_node.c +++ b/sys/fs/cd9660/cd9660_node.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94 - * $Id: cd9660_node.c,v 1.23 1998/02/04 22:32:29 eivind Exp $ + * $Id: cd9660_node.c,v 1.24 1998/02/06 12:13:20 eivind Exp $ */ #include @@ -55,10 +55,10 @@ /* * Structures associated with iso_node caching. */ -struct iso_node **isohashtbl; -u_long isohash; +static struct iso_node **isohashtbl; +static u_long isohash; #define INOHASH(device, inum) (((device) + ((inum)>>12)) & isohash) -struct simplelock cd9660_ihash_slock; +static struct simplelock cd9660_ihash_slock; static void cd9660_ihashrem __P((struct iso_node *)); static unsigned cd9660_chars2ui __P((unsigned char *begin, int len)); -- cgit v1.1