Debug info

This commit is contained in:
Baudouin Raoult 2016-06-18 23:31:05 +01:00
parent 249e5f8d99
commit 8896007a30
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ static const unsigned char* find(const char* path, size_t* length) {
for(i = 0; i < entries_count; i++) {
if(strcmp(path, entries[i].path) == 0) {
/*printf("Found in MEMFS %s\\n", path);*/
printf("Found in MEMFS %s\\n", path);
*length = entries[i].length;
return entries[i].content;
}