Remove debugging code that accidentally went in with yesterday's commit.

This commit is contained in:
perseant 2000-11-13 00:24:30 +00:00
parent 84ee07379b
commit a07c936a59
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lfs.h,v 1.33 2000/11/12 07:58:36 perseant Exp $ */
/* $NetBSD: lfs.h,v 1.34 2000/11/13 00:24:30 perseant Exp $ */
/*-
* Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@ -486,7 +486,6 @@ struct segsum {
#define LFS_SYNC_CLEANERINFO(cip, fs, bp, w) do { \
if ((w) || (cip)->bfree != (fs)->lfs_bfree || \
(cip)->avail != (fs)->lfs_avail - (fs)->lfs_ravail) { \
printf("update cleaner info at %s:%d\n", __FILE__, __LINE__); \
(cip)->bfree = (fs)->lfs_bfree; \
(cip)->avail = (fs)->lfs_avail - (fs)->lfs_ravail; \
(void) VOP_BWRITE(bp); /* Ifile */ \