From 8896007a30aec057ee6fe93cc6472ed8df6c6817 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Sat, 18 Jun 2016 23:31:05 +0100 Subject: [PATCH] Debug info --- memfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index ab8810710..39728459d 100755 --- a/memfs.py +++ b/memfs.py @@ -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; }