mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffhash: Change size to an int
This fixes compilation with MSVC and ICL, and makes ffhash consistent with how the rest of the codebase uses read(). Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4fdf2fa94a
commit
2599a62fbb
@ -87,7 +87,7 @@ static int check(char *file)
|
|||||||
|
|
||||||
av_hash_init(hash);
|
av_hash_init(hash);
|
||||||
for (;;) {
|
for (;;) {
|
||||||
ssize_t size = read(fd, buffer, SIZE);
|
int size = read(fd, buffer, SIZE);
|
||||||
if (size < 0) {
|
if (size < 0) {
|
||||||
close(fd);
|
close(fd);
|
||||||
finish();
|
finish();
|
||||||
|
Loading…
Reference in New Issue
Block a user