mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
ffadler: fix duplicate \n on errors
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
88e0e2054d
commit
d9cb1e0e15
@ -46,7 +46,7 @@ static int check(char *file)
|
|||||||
if (file) fd = open(file, O_RDONLY);
|
if (file) fd = open(file, O_RDONLY);
|
||||||
else fd = 0;
|
else fd = 0;
|
||||||
if (fd == -1) {
|
if (fd == -1) {
|
||||||
printf("A32=OPEN-FAILED-%d\n", errno);
|
printf("A32=OPEN-FAILED-%d", errno);
|
||||||
ret = 1;
|
ret = 1;
|
||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
@ -54,7 +54,7 @@ static int check(char *file)
|
|||||||
for (;;) {
|
for (;;) {
|
||||||
ssize_t size = read(fd, buffer, SIZE);
|
ssize_t size = read(fd, buffer, SIZE);
|
||||||
if (size < 0) {
|
if (size < 0) {
|
||||||
printf("A32=0x%08x+READ-FAILED-%d\n", checksum, errno);
|
printf("A32=0x%08x+READ-FAILED-%d", checksum, errno);
|
||||||
ret = 2;
|
ret = 2;
|
||||||
goto end;
|
goto end;
|
||||||
} else if(!size)
|
} else if(!size)
|
||||||
|
Loading…
Reference in New Issue
Block a user