OSDN Git Service

avcodec/tiffenc: remove double ;;
authorClément Bœsch <u@pkh.me>
Sat, 17 Jan 2015 23:33:02 +0000 (00:33 +0100)
committerClément Bœsch <u@pkh.me>
Sat, 17 Jan 2015 23:33:06 +0000 (00:33 +0100)
libavcodec/tiffenc.c

index 59ca69c..883cec1 100644 (file)
@@ -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)