[FFmpeg-cvslog] avdevice/pulse_audio_dec: 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:35:04 2015 +0100| [fa6c9e54df59bcb085995f4d070b271c7687d4ff] | committer: Clément Bœsch

avdevice/pulse_audio_dec: remove double ;;

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

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

diff --git a/libavdevice/pulse_audio_dec.c b/libavdevice/pulse_audio_dec.c
index 316cc4a..3cd0087 100644
--- a/libavdevice/pulse_audio_dec.c
+++ b/libavdevice/pulse_audio_dec.c
@@ -58,7 +58,7 @@ typedef struct PulseData {
             rerror = AVERROR_EXTERNAL;                          \
             goto label;                                         \
         }                                                       \
-    } while(0);
+    } while (0)
 
 #define CHECK_DEAD_GOTO(p, rerror, label)                               \
     do {                                                                \
@@ -67,7 +67,7 @@ typedef struct PulseData {
             rerror = AVERROR_EXTERNAL;                                  \
             goto label;                                                 \
         }                                                               \
-    } while(0);
+    } while (0)
 
 static void context_state_cb(pa_context *c, void *userdata) {
     PulseData *p = userdata;



More information about the ffmpeg-cvslog mailing list