Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-02-27 08:33:51 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2020-02-28 21:40:05 +0300
commitb6879b61dfe69e79c0fd32ce076fe1e7cbcc9c0c (patch)
tree038f5bf0e2533f162f0de6277ab8a84add803787 /libavcodec/cdtoons.c
parent23645f95ec0ae3f4ccc8ad2b23d1fbb16575ae16 (diff)
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>
Diffstat (limited to 'libavcodec/cdtoons.c')
-rw-r--r--libavcodec/cdtoons.c2
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;