last fix to missing ftello64 calls (hopefully)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4057 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2011-02-24 22:44:41 +00:00
parent ea84a81886
commit e39a04ee7f
3 changed files with 5 additions and 5 deletions

View file

@ -432,7 +432,7 @@ bool ftExtraList::loadList(std::list<RsItem *>& load)
librs::util::ConvertUtf8ToUtf16(fi->file.path, filepathW);
FILE *fd = _wfopen(filepathW.c_str(), L"rb");
#else
FILE *fd = fopen(fi->file.path.c_str(), "rb");
FILE *fd = fopen64(fi->file.path.c_str(), "rb");
#endif
if (fd == NULL)
{