summaryrefslogtreecommitdiff
path: root/ext4fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext4fs.c')
-rw-r--r--ext4fs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext4fs.c b/ext4fs.c
index 37b31d9..ba4c1da 100644
--- a/ext4fs.c
+++ b/ext4fs.c
@@ -190,7 +190,7 @@ int ext4fs_ls(const char *dirname)
status = ext4fs_find_file(dirname, &ext4fs_root->diropen, &dirnode,
FILETYPE_DIRECTORY);
if (status != 1) {
- printf("** Can not find directory. **\n");
+ dbg_printf("** Can not find directory. **\n");
if (dirnode)
ext4fs_free_node(dirnode, &ext4fs_root->diropen);
return 1;
@@ -245,7 +245,7 @@ int ext4_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
ret = ext4fs_open(filename, &file_len);
if (ret < 0) {
- printf("** File not found %s **\n", filename);
+ dbg_printf("** File not found %s **\n", filename);
return -1;
}