diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-02-27 06:33:51 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-02-28 19:40:05 +0100 |
commit | b6879b61dfe69e79c0fd32ce076fe1e7cbcc9c0c (patch) | |
tree | 038f5bf0e2533f162f0de6277ab8a84add803787 | |
parent | 23645f95ec0ae3f4ccc8ad2b23d1fbb16575ae16 (diff) | |
download | ffmpeg-b6879b61dfe69e79c0fd32ce076fe1e7cbcc9c0c.tar.gz |
avcodec/cdtoons: Remove superfluous ;
The second ; in a double ;; is actually a null statement. It triggers
the typical declaration-after-statement compiler-warnings if it occurs
in the middle of several declarations (like here).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/cdtoons.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cdtoons.c b/libavcodec/cdtoons.c index d5dce6351f..13f9a60f0f 100644 --- a/libavcodec/cdtoons.c +++ b/libavcodec/cdtoons.c @@ -61,7 +61,7 @@ static int cdtoons_render_sprite(AVCodecContext *avctx, const uint8_t *data, { CDToonsContext *c = avctx->priv_data; const uint8_t *next_line = data; - const uint8_t *end = data + data_size;; + const uint8_t *end = data + data_size; uint16_t line_size; uint8_t *dest; int skip = 0, to_skip, x; |