diff options
author | Clément Bœsch <u@pkh.me> | 2015-01-18 00:36:56 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-01-18 00:36:56 +0100 |
commit | 14f3e8b821d69e51b9a0e618e854bca3434880eb (patch) | |
tree | 13a8e57cc30edd6cacb818c739ff597bb02de51b | |
parent | fa6c9e54df59bcb085995f4d070b271c7687d4ff (diff) | |
download | ffmpeg-streaming-14f3e8b821d69e51b9a0e618e854bca3434880eb.zip ffmpeg-streaming-14f3e8b821d69e51b9a0e618e854bca3434880eb.tar.gz |
avformat/sbgdec: remove double ;;
-rw-r--r-- | libavformat/sbgdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c index 32822fb..23b7ea4 100644 --- a/libavformat/sbgdec.c +++ b/libavformat/sbgdec.c @@ -317,7 +317,7 @@ static int lex_time(struct sbg_parser *p, int64_t *rt) int errcode = c; \ if (errcode <= 0) \ return errcode ? errcode : AVERROR_INVALIDDATA; \ - } while(0); + } while (0) static int parse_immediate(struct sbg_parser *p) { |