mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-10 10:05:19 -04:00
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:
parent
ea84a81886
commit
e39a04ee7f
3 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue