*** empty log message ***

This commit is contained in:
Arvid Norberg
2004-01-31 15:07:49 +00:00
parent e8fabd3735
commit ead9297a7e
3 changed files with 5 additions and 3 deletions

View File

@@ -134,9 +134,9 @@ namespace libtorrent
m_file.clear();
if (m_open_mode == mode_in)
return m_file.tellg();
return static_cast<std::streamoff>(m_file.tellg());
else
return m_file.tellp();
return static_cast<std::streamoff>(m_file.tellp());
}
fs::fstream m_file;