PRINT_CODEC_SUPPORTED: fix used variable

Reviewed-by: Stefano Sabatini <stefasab@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-22 01:04:14 +02:00
parent aeb4d27dec
commit 769354348a
1 changed files with 1 additions and 1 deletions

View File

@ -888,7 +888,7 @@ int show_formats(void *optctx, const char *opt, const char *arg)
#define PRINT_CODEC_SUPPORTED(codec, field, type, list_name, term, get_name) \
if (codec->field) { \
const type *p = c->field; \
const type *p = codec->field; \
\
printf(" Supported " list_name ":"); \
while (*p != term) { \