mkvmuxerutil: remove stray 'int32'

fixes Android compilation of this file

Change-Id: Ib469c750baf05837f6475487a6f03465e56a9013
This commit is contained in:
James Zern 2016-04-02 11:45:32 -07:00
parent a1cba3409a
commit bb48a3fc63

View File

@ -615,7 +615,7 @@ uint64_t MakeUID(unsigned int* seed) {
int32_t temp_num = 1;
int fd = open("/dev/urandom", O_RDONLY);
if (fd != -1) {
read(fd, &temp_num, sizeof(int32));
read(fd, &temp_num, sizeof(temp_num));
close(fd);
}
const int32_t nn = temp_num;
@ -632,4 +632,4 @@ uint64_t MakeUID(unsigned int* seed) {
return uid;
}
} // namespace mkvmuxer
} // namespace mkvmuxer