libwebm: fixed compilation error

Change-Id: I2dfa93f3a2470e016ca905caee33c3dceb789b57
This commit is contained in:
Matthew Heaney
2013-01-31 14:13:33 -08:00
parent 43178b4c9a
commit 1274be1184

View File

@@ -517,7 +517,7 @@ mkvmuxer::uint64 mkvmuxer::MakeUID(unsigned int* seed) {
const errno_t e = rand_s(&random_value);
(void)e;
const int32 nn = random_value;
#elif
#else
const int32 nn = rand_r(seed);
#endif
const int32 n = 0xFF & (nn >> 4); // throw away low-order bits