From c855ce2671c7f11c86c1e876ccbddade010e16b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Mon, 2 Jul 2012 08:17:40 +0200 Subject: [PATCH] lavf/wtvdec: add missing { } around if. This should fix the current failures spotted by FATE. --- libavformat/wtvdec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c index eb312500c0..bbd7c23724 100644 --- a/libavformat/wtvdec.c +++ b/libavformat/wtvdec.c @@ -461,18 +461,18 @@ static void get_tag(AVFormatContext *s, AVIOContext *pb, const char *key, int ty } else if (type == 4 && length == 8) { int64_t num = avio_rl64(pb); if (!strcmp(key, "WM/EncodingTime") || - !strcmp(key, "WM/MediaOriginalBroadcastDateTime")) + !strcmp(key, "WM/MediaOriginalBroadcastDateTime")) { if (filetime_to_iso8601(buf, buf_size, num) < 0) { av_free(buf); return; } - else if (!strcmp(key, "WM/WMRVEncodeTime") || - !strcmp(key, "WM/WMRVEndTime")) + } else if (!strcmp(key, "WM/WMRVEncodeTime") || + !strcmp(key, "WM/WMRVEndTime")) { if (crazytime_to_iso8601(buf, buf_size, num) < 0) { av_free(buf); return; } - else if (!strcmp(key, "WM/WMRVExpirationDate")) { + } else if (!strcmp(key, "WM/WMRVExpirationDate")) { if (oledate_to_iso8601(buf, buf_size, num) < 0 ) { av_free(buf); return;