diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-07 00:54:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-07 00:54:06 +0200 |
commit | 374cf93548d171de72f3cf8939a061c9ee150aff (patch) | |
tree | 5767a16eea89c35b631975daad6608cab3ecf7c9 /libavformat/asfdec.c | |
parent | 0c015aa95c2dcd7ae60a560ad913d98ef81404ce (diff) | |
download | ffmpeg-374cf93548d171de72f3cf8939a061c9ee150aff.tar.gz |
avformat/asfdec: do not define print_guid() to nothing
This avoid potential warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/asfdec.c')
-rw-r--r-- | libavformat/asfdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 270d092fb0..359ee8be2f 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -148,7 +148,7 @@ static void print_guid(ff_asf_guid *g) } #undef PRINT_IF_GUID #else -#define print_guid(g) +#define print_guid(g) while(0) #endif static int asf_probe(AVProbeData *pd) |