mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
Cosmetics: fix indentation and remove a useless else.
Originally committed as revision 24495 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
3aa13da970
commit
853a0fccce
@ -394,7 +394,6 @@ int get_byte(ByteIOContext *s)
|
||||
fill_buffer(s);
|
||||
if (s->buf_ptr < s->buf_end)
|
||||
return *s->buf_ptr++;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -404,7 +403,6 @@ int url_fgetc(ByteIOContext *s)
|
||||
fill_buffer(s);
|
||||
if (s->buf_ptr < s->buf_end)
|
||||
return *s->buf_ptr++;
|
||||
else
|
||||
return URL_EOF;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user