libwebm: removed warning in x64 mode

Change-Id: I391ad625babdede58c8025b332ee2c949e930454
This commit is contained in:
matthewjheaney
2011-01-24 22:45:10 -05:00
parent 598de03ef3
commit 5b06b22b31

View File

@@ -1889,9 +1889,11 @@ SeekHead::SeekHead(
assert(pos == stop); assert(pos == stop);
m_count = ptrdiff_t(pEntry - m_entries); const ptrdiff_t count_ = ptrdiff_t(pEntry - m_entries);
assert(m_count >= 0); assert(count_ >= 0);
assert(m_count <= count); assert(count_ <= count);
m_count = static_cast<int>(count_);
} }
SeekHead::~SeekHead() SeekHead::~SeekHead()