diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-09-08 21:21:50 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-09-08 21:21:50 +0200 |
commit | 337b9e190ba0d822efe3325c612ddce1d769c75b (patch) | |
tree | 012a87a75b0db0c63de50fdfbce6c1e8b0a6beaa | |
parent | 51a087771bd723fbcac1e2adbf559b3d8206fe5f (diff) | |
download | ffmpeg-337b9e190ba0d822efe3325c612ddce1d769c75b.tar.gz |
avcodec/ulti: fix minor style issue
-rw-r--r-- | libavcodec/ulti.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/ulti.c b/libavcodec/ulti.c index 9e4c088b10..9318af064b 100644 --- a/libavcodec/ulti.c +++ b/libavcodec/ulti.c @@ -62,7 +62,8 @@ static av_cold int ulti_decode_init(AVCodecContext *avctx) return 0; } -static av_cold int ulti_decode_end(AVCodecContext *avctx){ +static av_cold int ulti_decode_end(AVCodecContext *avctx) +{ UltimotionDecodeContext *s = avctx->priv_data; av_frame_free(&s->frame); |