avdevice/pulse_audio_dec: remove double ;;

This commit is contained in:
Clément Bœsch 2015-01-18 00:35:04 +01:00
parent 4d028bf202
commit fa6c9e54df
1 changed files with 2 additions and 2 deletions

View File

@ -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;