mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-02 18:07:47 +00:00
proto: Realign struct initializers
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
7e58050590
commit
c3b05d2159
6 changed files with 28 additions and 28 deletions
|
@ -115,10 +115,10 @@ static int gopher_read(URLContext *h, uint8_t *buf, int size)
|
|||
|
||||
|
||||
URLProtocol ff_gopher_protocol = {
|
||||
.name = "gopher",
|
||||
.url_open = gopher_open,
|
||||
.url_read = gopher_read,
|
||||
.url_write = gopher_write,
|
||||
.url_close = gopher_close,
|
||||
.name = "gopher",
|
||||
.url_open = gopher_open,
|
||||
.url_read = gopher_read,
|
||||
.url_write = gopher_write,
|
||||
.url_close = gopher_close,
|
||||
.priv_data_size = sizeof(GopherContext),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue