diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-05-03 10:43:27 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-05-18 10:19:54 +0200 |
commit | b136564909adec2043be4c94ade08b67ad443124 (patch) | |
tree | e2daa2465aadd0af0bfa23576b522e33b969c3d9 /libavformat/a64.c | |
parent | d256ed78ffe202a4dcc8d625becffc716bfa3977 (diff) | |
download | ffmpeg-b136564909adec2043be4c94ade08b67ad443124.tar.gz |
a64: remove unneeded struct qualifier
Diffstat (limited to 'libavformat/a64.c')
-rw-r--r-- | libavformat/a64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/a64.c b/libavformat/a64.c index 15a0475703..640e786836 100644 --- a/libavformat/a64.c +++ b/libavformat/a64.c @@ -25,7 +25,7 @@ #include "avformat.h" #include "rawenc.h" -static int a64_write_header(struct AVFormatContext *s) +static int a64_write_header(AVFormatContext *s) { AVCodecContext *avctx = s->streams[0]->codec; uint8_t header[5] = { |