fixed create_torrent to use renamed function 'convert_to_wstring'

This commit is contained in:
Arvid Norberg 2009-03-03 18:18:08 +00:00
parent a4fca76eff
commit b9ab3f056b
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ namespace libtorrent
#ifdef TORRENT_WINDOWS
#ifdef TORRENT_USE_WPATH
std::wstring path = safe_convert(p.external_file_string());
std::wstring path = convert_to_wstring(p.external_file_string());
#else
std::string path = utf8_native(p.external_file_string());
#endif