summaryrefslogtreecommitdiff
path: root/libavformat/gopher.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-12-01 11:53:57 +0200
committerMartin Storsjö <martin@martin.st>2011-12-01 13:47:28 +0200
commitc3b05d2159e9c2d78c62ef79c2cfcb90d766556d (patch)
tree0eade48b8a93b7c90895610691ab2ebc4ce54278 /libavformat/gopher.c
parent7e58050590c556643869a1cc57215026ff88b0db (diff)
proto: Realign struct initializers
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/gopher.c')
-rw-r--r--libavformat/gopher.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/gopher.c b/libavformat/gopher.c
index 0543878ba8..c0338619b3 100644
--- a/libavformat/gopher.c
+++ b/libavformat/gopher.c
@@ -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),
};