suppress these noisy, alarming messages.

This commit is contained in:
Ben Gras 2009-03-26 15:56:08 +00:00
parent cd2d85c13d
commit 2d1c884e35
2 changed files with 0 additions and 2 deletions

View file

@ -83,7 +83,6 @@ PUBLIC int fs_readsuper_s()
/* Is it recognized as a Minix filesystem? */
if (r != OK) {
printf("MFS: bad superblock\n");
superblock.s_dev = NO_DEV;
dev_close(driver_e, fs_dev);
return(r);

View file

@ -290,7 +290,6 @@ PRIVATE int mount_fs(endpoint_t fs_e)
r = req_readsuper(fs_e, label, dev, m_in.rd_only, isroot, &res);
if (r != OK) {
put_vnode(mounted_on);
printf("vfs:mount_fs: req_readsuper failed with %d\n", r);
return r;
}