From 2dfb5ed44b4508854bc506c47b3c396e9ba8858c Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Tue, 23 Jun 2009 01:55:09 +0000 Subject: [PATCH] fixed wchar_t bug in file.hpp --- include/libtorrent/file.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libtorrent/file.hpp b/include/libtorrent/file.hpp index a29315805..05c25ea5a 100644 --- a/include/libtorrent/file.hpp +++ b/include/libtorrent/file.hpp @@ -151,7 +151,7 @@ namespace libtorrent #ifdef TORRENT_WINDOWS HANDLE m_file_handle; -#ifdef TORRENT_USE_WPATH +#if TORRENT_USE_WPATH std::wstring m_path; #else std::string m_path;