From 9a94b4cbc12a2995bdcc7d967d2d3be4012ba468 Mon Sep 17 00:00:00 2001 From: Michael Gruner Date: Thu, 23 Jan 2020 12:38:44 -0600 Subject: [PATCH] videoscale: reorder code to avoid indent missmatches Part-of: --- gst/videoscale/gstvideoscale.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gst/videoscale/gstvideoscale.c b/gst/videoscale/gstvideoscale.c index 1d73406293..d7dd68a68d 100644 --- a/gst/videoscale/gstvideoscale.c +++ b/gst/videoscale/gstvideoscale.c @@ -719,9 +719,8 @@ gst_video_scale_fixate_caps (GstBaseTransform * base, GstPadDirection direction, { GstStructure *ins, *outs; const GValue *from_par, *to_par; - GValue fpar = { 0, }, tpar = { - 0, - }; + GValue fpar = { 0, }; + GValue tpar = { 0, }; othercaps = gst_caps_truncate (othercaps); othercaps = gst_caps_make_writable (othercaps);