From 2726241a1c2ba3dcd40f1c531487470a787c73e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Me=C3=9Fmer?= Date: Thu, 23 Apr 2015 09:25:04 +0200 Subject: [PATCH] Removed debug output --- fuse/Fuse.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/fuse/Fuse.cpp b/fuse/Fuse.cpp index d4a11d94..9b3e7f61 100644 --- a/fuse/Fuse.cpp +++ b/fuse/Fuse.cpp @@ -482,7 +482,6 @@ int Fuse::readdir(const bf::path &path, void *buf, fuse_fill_dir_t filler, off_t } else if (entry.type == Dir::EntryType::FILE) { stbuf.st_mode = S_IFREG; } else if (entry.type == Dir::EntryType::SYMLINK) { - printf("readdir:symlink\n"); stbuf.st_mode = S_IFLNK; } else { assert(false);