aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/applehttpproto.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/applehttpproto.c
parent7e58050590c556643869a1cc57215026ff88b0db (diff)
downloadffmpeg-c3b05d2159e9c2d78c62ef79c2cfcb90d766556d.tar.gz
proto: Realign struct initializers
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/applehttpproto.c')
-rw-r--r--libavformat/applehttpproto.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/applehttpproto.c b/libavformat/applehttpproto.c
index 245422be40..2b157095f0 100644
--- a/libavformat/applehttpproto.c
+++ b/libavformat/applehttpproto.c
@@ -294,10 +294,10 @@ retry:
}
URLProtocol ff_applehttp_protocol = {
- .name = "applehttp",
- .url_open = applehttp_open,
- .url_read = applehttp_read,
- .url_close = applehttp_close,
- .flags = URL_PROTOCOL_FLAG_NESTED_SCHEME,
+ .name = "applehttp",
+ .url_open = applehttp_open,
+ .url_read = applehttp_read,
+ .url_close = applehttp_close,
+ .flags = URL_PROTOCOL_FLAG_NESTED_SCHEME,
.priv_data_size = sizeof(AppleHTTPContext),
};