Commit Diff


commit - 5e084a4a46035dd9877cf3892c20c6e603a70d35
commit + 6802a899956b6c593729c53fe9435dfc89020444
blob - ceb6052db2a412bda2dffd3cba0acc371340f9a9
blob + e7ce57e3569e43fcc6858ad436712b7cbb9ff676
--- src/libdiskfs/ffs.c
+++ 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;