summaryrefslogtreecommitdiff
path: root/libavformat/mmsh.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/mmsh.c
parent7e58050590c556643869a1cc57215026ff88b0db (diff)
proto: Realign struct initializers
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/mmsh.c')
-rw-r--r--libavformat/mmsh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/mmsh.c b/libavformat/mmsh.c
index a1ae894c6e..fa1a467223 100644
--- a/libavformat/mmsh.c
+++ b/libavformat/mmsh.c
@@ -359,9 +359,9 @@ static int mmsh_read(URLContext *h, uint8_t *buf, int size)
}
URLProtocol ff_mmsh_protocol = {
- .name = "mmsh",
- .url_open = mmsh_open,
- .url_read = mmsh_read,
- .url_close = mmsh_close,
+ .name = "mmsh",
+ .url_open = mmsh_open,
+ .url_read = mmsh_read,
+ .url_close = mmsh_close,
.priv_data_size = sizeof(MMSHContext),
};