diff options
author | Martin Storsjö <martin@martin.st> | 2011-12-01 11:53:57 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-12-01 13:47:28 +0200 |
commit | c3b05d2159e9c2d78c62ef79c2cfcb90d766556d (patch) | |
tree | 0eade48b8a93b7c90895610691ab2ebc4ce54278 /libavformat/mmst.c | |
parent | 7e58050590c556643869a1cc57215026ff88b0db (diff) | |
download | ffmpeg-c3b05d2159e9c2d78c62ef79c2cfcb90d766556d.tar.gz |
proto: Realign struct initializers
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/mmst.c')
-rw-r--r-- | libavformat/mmst.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mmst.c b/libavformat/mmst.c index 9d7fd7471c..753b05cceb 100644 --- a/libavformat/mmst.c +++ b/libavformat/mmst.c @@ -620,9 +620,9 @@ static int mms_read(URLContext *h, uint8_t *buf, int size) } URLProtocol ff_mmst_protocol = { - .name = "mmst", - .url_open = mms_open, - .url_read = mms_read, - .url_close = mms_close, + .name = "mmst", + .url_open = mms_open, + .url_read = mms_read, + .url_close = mms_close, .priv_data_size = sizeof(MMSTContext), }; |