improve some asserts in storage.cpp

This commit is contained in:
arvidn 2017-09-07 16:18:45 +02:00 committed by Arvid Norberg
parent 1280361236
commit c848f6d978
1 changed files with 2 additions and 2 deletions

View File

@ -922,11 +922,11 @@ namespace libtorrent
stat_file(fs.file_path(i, m_save_path), &s, error); stat_file(fs.file_path(i, m_save_path), &s, error);
if (s.file_size >= 0 && !error) if (s.file_size >= 0 && !error)
{ {
TORRENT_ASSERT(s.file_size == file_size); TORRENT_ASSERT_VAL(s.file_size == file_size, file_size);
} }
else else
{ {
TORRENT_ASSERT(file_size == 0); TORRENT_ASSERT_VAL(file_size == 0, file_size);
} }
} }
#endif #endif