diff options
Diffstat (limited to 'sys/isofs/cd9660/cd9660_node.c')
-rw-r--r-- | sys/isofs/cd9660/cd9660_node.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index 7220d1e..a7a971b 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/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 <sys/param.h> @@ -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)); |