echfs: Remove overly verbose print
diff --git a/stage23/fs/echfs.s2.c b/stage23/fs/echfs.s2.c
index 5c2cfeef..c907b36a 100644
--- a/stage23/fs/echfs.s2.c
+++ b/stage23/fs/echfs.s2.c
@@ -67,8 +67,6 @@ bool echfs_get_guid(struct guid *guid, struct volume *part) {
}
int echfs_open(struct echfs_file_handle *ret, struct volume *part, const char *path) {
- const char *fullpath = path;
-
ret->part = part;
struct echfs_identity_table id_table;
@@ -123,7 +121,6 @@ next:;
}
}
- print("echfs: file %s not found\n", fullpath);
return -1;
found:;
diff --git a/stage23/fs/iso9660.s2.c b/stage23/fs/iso9660.s2.c
index e95ac3e1..cf4a3660 100644
--- a/stage23/fs/iso9660.s2.c
+++ b/stage23/fs/iso9660.s2.c
@@ -3,8 +3,6 @@
#include <lib/libc.h>
#include <mm/pmm.h>
-#include <lib/print.h>
-
#define ISO9660_FIRST_VOLUME_DESCRIPTOR 0x10
#define ISO9660_VOLUME_DESCRIPTOR_SIZE ISO9660_SECTOR_SIZE
#define ROCK_RIDGE_MAX_FILENAME 255
