diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-10-29 15:33:36 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1995-10-29 15:33:36 +0000 |
commit | a98ca4699e496aa92e57b376defd0647b9ed5628 (patch) | |
tree | 5994df578f3d766b837fe6548617062ae4661aac /sys/msdosfs/msdosfs_fat.c | |
parent | 973e116456750e8ab62bfdb0f58be45593879c42 (diff) |
Second batch of cleanup changes.
This time mostly making a lot of things static and some unused
variables here and there.
Notes
Notes:
svn path=/head/; revision=11921
Diffstat (limited to 'sys/msdosfs/msdosfs_fat.c')
-rw-r--r-- | sys/msdosfs/msdosfs_fat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/msdosfs/msdosfs_fat.c b/sys/msdosfs/msdosfs_fat.c index b43f9595b6b5..10f397a77273 100644 --- a/sys/msdosfs/msdosfs_fat.c +++ b/sys/msdosfs/msdosfs_fat.c @@ -1,4 +1,4 @@ -/* $Id: msdosfs_fat.c,v 1.6 1995/04/11 16:43:20 bde Exp $ */ +/* $Id: msdosfs_fat.c,v 1.7 1995/05/30 08:07:40 rgrimes Exp $ */ /* $NetBSD: msdosfs_fat.c,v 1.12 1994/08/21 18:44:04 ws Exp $ */ /*- @@ -300,7 +300,7 @@ void fc_purge(dep, frcn) * bp - addr of modified fat block * fatbn - block number relative to begin of filesystem of the modified fat block. */ -void +static void updatefats(pmp, bp, fatbn) struct msdosfsmount *pmp; struct buf *bp; |