From 834557d5b614f920f8fd5fa20fb4f86c001e9a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Wed, 29 Mar 2017 13:22:47 +0200 Subject: [PATCH] libs: encoder: h265: fix code style Trivial patch to remove a double ';' as end of instruction. --- gst-libs/gst/vaapi/gstvaapiencoder_h265.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/vaapi/gstvaapiencoder_h265.c b/gst-libs/gst/vaapi/gstvaapiencoder_h265.c index 0b6047c5d4..7170bcff39 100644 --- a/gst-libs/gst/vaapi/gstvaapiencoder_h265.c +++ b/gst-libs/gst/vaapi/gstvaapiencoder_h265.c @@ -924,7 +924,7 @@ ensure_profile_limits (GstVaapiEncoderH265 * encoder) ("Needs to lower coding tools to meet target decoder constraints"); GST_WARNING ("Only supporting Main profile, reset profile to Main"); - encoder->profile = GST_VAAPI_PROFILE_H265_MAIN;; + encoder->profile = GST_VAAPI_PROFILE_H265_MAIN; encoder->profile_idc = gst_vaapi_utils_h265_get_profile_idc (encoder->profile);