[FFmpeg-cvslog] avcodec/tiffenc: remove double ;;

Clément Bœsch git at videolan.org
Sun Jan 18 00:38:58 CET 2015


ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Sun Jan 18 00:33:02 2015 +0100| [ca3c7be7c68acd7b50ee5ad661ac52b8be3f3df3] | committer: Clément Bœsch

avcodec/tiffenc: remove double ;;

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ca3c7be7c68acd7b50ee5ad661ac52b8be3f3df3
---

 libavcodec/tiffenc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/tiffenc.c b/libavcodec/tiffenc.c
index 59ca69c..883cec1 100644
--- a/libavcodec/tiffenc.c
+++ b/libavcodec/tiffenc.c
@@ -230,14 +230,14 @@ static void pack_yuv(TiffEncoderContext *s, const AVFrame *p,
         ret = add_entry(s, tag, type, count, ptr_val);  \
         if (ret < 0)                                    \
             goto fail;                                  \
-    } while(0);
+    } while (0)
 
 #define ADD_ENTRY1(s, tag, type, val)           \
     do {                                        \
         ret = add_entry1(s, tag, type, val);    \
         if (ret < 0)                            \
             goto fail;                          \
-    } while(0);
+    } while (0)
 
 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
                         const AVFrame *pict, int *got_packet)



More information about the ffmpeg-cvslog mailing list