tchatty - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 6802a899956b6c593729c53fe9435dfc89020444
 (DIR) parent 5e084a4a46035dd9877cf3892c20c6e603a70d35
 (HTM) Author: rsc <devnull@localhost>
       Date:   Fri, 28 Apr 2006 03:08:00 +0000
       
       chatty
       
       Diffstat:
         M src/libdiskfs/ffs.c                 |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/src/libdiskfs/ffs.c b/src/libdiskfs/ffs.c
       t@@ -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);
       t@@ -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;