Fixed compile on Linux.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4125 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-04-03 23:27:36 +00:00
parent bc113326e4
commit 83837fb9a8

View File

@ -739,7 +739,7 @@ FILE *RsDirUtil::rs_fopen(const char* filename, const char* mode)
return _wfopen(wfilename.c_str(), wmode.c_str()); return _wfopen(wfilename.c_str(), wmode.c_str());
#else #else
return = fopen64(filename, mode); return fopen64(filename, mode);
#endif #endif
} }