From 7c423844deda23c12c0d1f3c359ef7a3053505c1 Mon Sep 17 00:00:00 2001 From: JackBurton79 Date: Mon, 13 Aug 2018 10:03:45 +0200 Subject: [PATCH] Spacing style --- src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp b/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp index 1bc724eb73..5f4af7137f 100644 --- a/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp +++ b/src/add-ons/media/plugins/ffmpeg/AVFormatWriter.cpp @@ -372,10 +372,10 @@ AVFormatWriter::~AVFormatWriter() TRACE("AVFormatWriter::~AVFormatWriter\n"); // Free the streams and close the AVCodecContexts - for(unsigned i = 0; i < fFormatContext->nb_streams; i++) { + for (unsigned i = 0; i < fFormatContext->nb_streams; i++) { av_freep(&fFormatContext->streams[i]->codecpar); av_freep(&fFormatContext->streams[i]); - } + } av_free(fFormatContext); av_free(fIOContext->buffer);