From 5b1b6c58596c990f6da8e0385d3990e4baa8e88b Mon Sep 17 00:00:00 2001 From: Eivind Eklund Date: Tue, 12 Jan 1999 11:42:41 +0000 Subject: [PATCH] Silence warning about unused debug function. (I'll turn this function into a DDB command in my next staticization sweep). --- sys/ufs/ffs/ffs_subr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/ufs/ffs/ffs_subr.c b/sys/ufs/ffs/ffs_subr.c index f3ddc86f409f..5052b89f8a8c 100644 --- a/sys/ufs/ffs/ffs_subr.c +++ b/sys/ufs/ffs/ffs_subr.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_subr.c 8.5 (Berkeley) 3/21/95 - * $Id: ffs_subr.c,v 1.21 1998/03/28 10:33:26 bde Exp $ + * $Id: ffs_subr.c,v 1.22 1998/11/29 03:12:06 bde Exp $ */ #include @@ -53,7 +53,7 @@ #include #ifdef DDB -static void ffs_checkoverlap __P((struct buf *, struct inode *)); +void ffs_checkoverlap __P((struct buf *, struct inode *)); #endif /* @@ -128,7 +128,7 @@ ffs_fragacct(fs, fragmap, fraglist, cnt) } #ifdef DDB -static void +void ffs_checkoverlap(bp, ip) struct buf *bp; struct inode *ip;