From e7f50badeab2a504aad7e670f9fee0a2553b2512 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Thu, 6 Jun 2019 20:34:49 -0700 Subject: [PATCH] Fix unintentionally setting the thread name twice --- src/fspp/fuse/Fuse.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp index 73a65f5e..3a5131c6 100644 --- a/src/fspp/fuse/Fuse.cpp +++ b/src/fspp/fuse/Fuse.cpp @@ -514,7 +514,6 @@ int Fuse::unlink(const bf::path &path) { try { ASSERT(is_valid_fspp_path(path), "has to be an absolute path"); _fs->unlink(path); - ThreadNameForDebugging _threadName("unlink"); #ifdef FSPP_LOG LOG(DEBUG, "unlink({}): success", path); #endif