diff --git a/sys/fs/fat/fat_access.c b/sys/fs/fat/fat_access.c index 795a7fc..09c180b 100644 --- a/sys/fs/fat/fat_access.c +++ b/sys/fs/fat/fat_access.c @@ -491,6 +491,8 @@ // Compare names to see if they match if (fatfs_compare_names(short_filename, name_to_find)) { + kprintf("gfe[%s:%i]: %s:%s\n", __FILE__, __LINE__, short_filename, + name_to_find); memcpy(sfEntry,directoryEntry,sizeof(struct fat_dir_entry)); return 1; }