From 4a90ae166a9dac56ad5249a47045164bfe8ed1e5 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sun, 27 Sep 2020 15:02:56 +0200 Subject: [PATCH] Fix a DBG in case the native path is wide string --- src/sfizz/FilePool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/FilePool.cpp b/src/sfizz/FilePool.cpp index 9750da2c..0fedc45b 100644 --- a/src/sfizz/FilePool.cpp +++ b/src/sfizz/FilePool.cpp @@ -180,7 +180,7 @@ bool sfz::FilePool::checkSample(std::string& filename) const noexcept DBG("Error extracting the new relative path for " << filename << " (Error code: " << ec.message() << ")"); return false; } - DBG("Updating " << filename << " to " << newPath.native()); + DBG("Updating " << filename << " to " << newPath); filename = newPath.string(); return true; #endif