diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
commit | 0e645b98c66aafe32517b946a6484eb5579172d4 (patch) | |
tree | 228bd4cbd4d1584f5bc26b8b4a85f346135aa276 /libavcodec/exr.c | |
parent | 590f491b0aefe770876c09c09433c24fc21a1565 (diff) | |
download | ffmpeg-0e645b98c66aafe32517b946a6484eb5579172d4.tar.gz |
Remove double ';'
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/exr.c')
-rw-r--r-- | libavcodec/exr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 640807cea9..b0b375ab2f 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -1151,7 +1151,7 @@ static int decode_block(AVCodecContext *avctx, void *tdata, } } else { for (x = 0; x < xsize; x++) { - *ptr_x++ = exr_half2float(bytestream_get_le16(&src));; + *ptr_x++ = exr_half2float(bytestream_get_le16(&src)); } } } |