From afb6b55b8f54738ec203598458022c41d123e12d Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 30 Oct 2008 17:04:59 +0000 Subject: [PATCH] fixed typo in safe_convert call --- src/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage.cpp b/src/storage.cpp index 715c74656..5e689cf63 100644 --- a/src/storage.cpp +++ b/src/storage.cpp @@ -534,7 +534,7 @@ namespace libtorrent #endif #if TORRENT_USE_WPATH - fs::wpath file_path = safe_convert(m_save_path / file_iter->path); + fs::wpath file_path = safe_convert((m_save_path / file_iter->path).string()); #else fs::path file_path = m_save_path / file_iter->path; #endif