Originally committed as revision 23931 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-07-01 11:40:54 +00:00
parent b7fa5c5abb
commit 9958096ea2

View File

@ -31,7 +31,7 @@ static int read_random(uint32_t *dst, const char *file)
if (fd == -1)
return -1;
err = read(fd, dst, sizeof(*dst));
err = read(fd, dst, sizeof(*dst));
close(fd);
return err;