plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 6802a899956b6c593729c53fe9435dfc89020444
parent 5e084a4a46035dd9877cf3892c20c6e603a70d35
Author: rsc <devnull@localhost>
Date:   Fri, 28 Apr 2006 03:08:00 +0000

chatty

Diffstat:
Msrc/libdiskfs/ffs.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libdiskfs/ffs.c b/src/libdiskfs/ffs.c @@ -103,7 +103,7 @@ ffssync(Fsys *fsys) if((b = diskread(disk, SBSIZE, off[i])) == nil) goto error; fsblk = (Fsblk*)b->data; - fprint(2, "offset of magic: %ld\n", offsetof(Fsblk, magic)); + // fprint(2, "offset of magic: %ld\n", offsetof(Fsblk, magic)); if((fs->ufs = checkfsblk(fsblk)) > 0) goto okay; blockput(b); @@ -193,7 +193,7 @@ ffsclose(Fsys *fsys) static int checkfsblk(Fsblk *super) { -fprint(2, "ffs magic 0x%ux\n", super->magic); +// fprint(2, "ffs magic 0x%ux\n", super->magic); if(super->magic == FSMAGIC){ super->time = super->_time; super->nfrag = super->_nfrag;