From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.90_1) id 1j3zlJ-000636-GL for mharc-qemu-trivial@gnu.org; Tue, 18 Feb 2020 05:05:53 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47450) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3zlG-0005wi-DM for qemu-trivial@nongnu.org; Tue, 18 Feb 2020 05:05:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3zlF-0000ut-Aw for qemu-trivial@nongnu.org; Tue, 18 Feb 2020 05:05:50 -0500 Received: from us-smtp-2.mimecast.com ([207.211.31.81]:20901 helo=us-smtp-delivery-1.mimecast.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j3zlF-0000uB-5p for qemu-trivial@nongnu.org; Tue, 18 Feb 2020 05:05:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582020348; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7fA3qA3hN2cAGYJmN+23/u+eYsRYv732LFFW/O7nLGA=; b=S2kXHtmATwfmQv0zzY3IjIYuH8duhex7C1Ih6Q/b9DC2TJKudPA3SccNzii2lVcFPi4Xf4 vhboeY/P64SUWZC5TVUnww0b9opDIQvBRGHoO7+qij7r2fhpCqMJRvGVgx6fb6VUUvY5v8 v+znHJyf4m7irqs9T8KI2pmp3VyjEco= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-297-31IcOHKSPqGEBO0qrYQR9g-1; Tue, 18 Feb 2020 05:05:47 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D79B2477; Tue, 18 Feb 2020 10:05:44 +0000 (UTC) Received: from work-vm (unknown [10.36.118.89]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 29CDF8CCC5; Tue, 18 Feb 2020 10:05:22 +0000 (UTC) Date: Tue, 18 Feb 2020 10:05:19 +0000 From: "Dr. David Alan Gilbert" To: Philippe =?iso-8859-1?Q?Mathieu-Daud=E9?= Cc: qemu-devel@nongnu.org, Max Reitz , Kevin Wolf , Thomas Huth , Fam Zheng , Eduardo Habkost , Alex Williamson , Marcel Apfelbaum , Richard Henderson , Julia Suvorova , Thomas Huth , "Edgar E. Iglesias" , Aarushi Mehta , qemu-trivial@nongnu.org, Stefan Hajnoczi , Alistair Francis , Gerd Hoffmann , Luc Michel , Laurent Vivier , Juan Quintela , Michael Tokarev , Laurent Vivier , Paolo Bonzini , Yuval Shaia , qemu-arm@nongnu.org, Peter Maydell , qemu-block@nongnu.org, Emanuele Giuseppe Esposito Subject: Re: [PATCH RESEND 12/13] tests/qtest/libqos/qgraph: Remove superfluous semicolons Message-ID: <20200218100519.GO3080@work-vm> References: <20200218094402.26625-1-philmd@redhat.com> <20200218094402.26625-13-philmd@redhat.com> MIME-Version: 1.0 In-Reply-To: <20200218094402.26625-13-philmd@redhat.com> User-Agent: Mutt/1.13.3 (2020-01-12) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: 31IcOHKSPqGEBO0qrYQR9g-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 207.211.31.81 X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2020 10:05:51 -0000 * Philippe Mathieu-Daud=E9 (philmd@redhat.com) wrote: > Fixes: fc281c80202 > Signed-off-by: Philippe Mathieu-Daud=E9 Reviewed-by: Dr. David Alan Gilbert > --- > Cc: Emanuele Giuseppe Esposito > --- > tests/qtest/libqos/qgraph.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/tests/qtest/libqos/qgraph.c b/tests/qtest/libqos/qgraph.c > index 7a7ae2a19e..ca01de0743 100644 > --- a/tests/qtest/libqos/qgraph.c > +++ b/tests/qtest/libqos/qgraph.c > @@ -474,7 +474,7 @@ QOSEdgeType qos_graph_edge_get_type(QOSGraphEdge *edg= e) > if (!edge) { > return -1; > } > - return edge->type;; > + return edge->type; > } > =20 > char *qos_graph_edge_get_dest(QOSGraphEdge *edge) > @@ -590,7 +590,7 @@ void qos_add_test(const char *name, const char *inter= face, > QOSTestFunc test_func, QOSGraphTestOptions *opts) > { > QOSGraphNode *node; > - char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name);= ; > + char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name); > QOSGraphTestOptions def_opts =3D { }; > =20 > if (!opts) { > --=20 > 2.21.1 >=20 -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by 2002:a05:6512:3aa:0:0:0:0 with SMTP id v10csp5956144lfp; Tue, 18 Feb 2020 02:06:01 -0800 (PST) X-Google-Smtp-Source: APXvYqwuA/vbuVRmBAWt5Hn4nor5M2wA9f+D0OaGU+bxDi61M7/2U6sPnHfRfasiQNYD9VWGhJg3 X-Received: by 2002:a05:620a:1112:: with SMTP id o18mr17473678qkk.126.1582020360890; Tue, 18 Feb 2020 02:06:00 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1582020360; cv=none; d=google.com; s=arc-20160816; b=Z/cES/Yjl7cfNTbfOcL32+Ok+S6TaO8/BpgSKxG8F0VvggcR6dPp1V0hH7Ba4tH0Cy ZWxdcb3uV+g3tO2rRTIgO1d+I+Rw2wK8dUuB2sXU1McrUozofEivoDEphe5BzSmEf8CG h/qE6gldZDlwumG05o3u94tykdKYprF6XjsH8AaK/MtwpnGNS1bIYtDwvfaEKqXS6cGI uSF0rqlsjdSZQz/z3ysGe1h+4YV/GMVi+hy7sF2V+Nv/XGWwc3rd0TmdWkWmX7PlHjm4 w/gzKAoqMZLFhmI1+7D1Ajj+dW5PLJ98K09hXs/vFgUGXbXQCTMAVjdV+Vo//0u+VqEZ 4B8A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=sender:errors-to:cc:list-subscribe:list-help:list-post:list-archive :list-unsubscribe:list-id:precedence:content-disposition :content-transfer-encoding:user-agent:in-reply-to:mime-version :references:message-id:subject:to:from:date:dkim-signature; bh=7fA3qA3hN2cAGYJmN+23/u+eYsRYv732LFFW/O7nLGA=; b=PTMDR4KJD3HaMw9aozCeWMNz5RN6MMNyzwd7M5BYaZDkEXovo1Nee0omPNyAkKD5TT Mf9DmSmUCRyPW/TEvGvlyyBQEQVvvAihuNbMhzgoP76oCH6ZOwh4psjTEqk53Xcb8d6O e3UXiF/rhJZ1OnD8kn53nwuHt6oMHIkiFQ6g6h33qrWYpWL94XDwbhgojkNJJScl1FQN bq51G4DqTqnviygWGZZIYfWFfIauCi/3DC+s5I2dSPclWqMyy0BtZLuYd7jQYaxxqBQL 015lyy3mOpOc419JoVev9RVT0gx6dk+XWxNWs91uFB8dehRFAH2MWbdd5EFo14Alag6c E0yw== ARC-Authentication-Results: i=1; mx.google.com; dkim=fail header.i=@redhat.com header.s=mimecast20190719 header.b=S2kXHtmA; spf=pass (google.com: domain of qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom="qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org"; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org. [209.51.188.17]) by mx.google.com with ESMTPS id g14si1439552qti.136.2020.02.18.02.06.00 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 18 Feb 2020 02:06:00 -0800 (PST) Received-SPF: pass (google.com: domain of qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; Authentication-Results: mx.google.com; dkim=fail header.i=@redhat.com header.s=mimecast20190719 header.b=S2kXHtmA; spf=pass (google.com: domain of qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom="qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org"; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=redhat.com Received: from localhost ([::1]:59886 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3zlQ-00063i-BO for alex.bennee@linaro.org; Tue, 18 Feb 2020 05:06:00 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47451) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3zlG-0005wj-DR for qemu-arm@nongnu.org; Tue, 18 Feb 2020 05:05:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3zlF-0000um-Af for qemu-arm@nongnu.org; Tue, 18 Feb 2020 05:05:50 -0500 Received: from us-smtp-2.mimecast.com ([207.211.31.81]:47112 helo=us-smtp-delivery-1.mimecast.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j3zlF-0000uC-68 for qemu-arm@nongnu.org; Tue, 18 Feb 2020 05:05:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582020348; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7fA3qA3hN2cAGYJmN+23/u+eYsRYv732LFFW/O7nLGA=; b=S2kXHtmATwfmQv0zzY3IjIYuH8duhex7C1Ih6Q/b9DC2TJKudPA3SccNzii2lVcFPi4Xf4 vhboeY/P64SUWZC5TVUnww0b9opDIQvBRGHoO7+qij7r2fhpCqMJRvGVgx6fb6VUUvY5v8 v+znHJyf4m7irqs9T8KI2pmp3VyjEco= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-297-31IcOHKSPqGEBO0qrYQR9g-1; Tue, 18 Feb 2020 05:05:47 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D79B2477; Tue, 18 Feb 2020 10:05:44 +0000 (UTC) Received: from work-vm (unknown [10.36.118.89]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 29CDF8CCC5; Tue, 18 Feb 2020 10:05:22 +0000 (UTC) Date: Tue, 18 Feb 2020 10:05:19 +0000 From: "Dr. David Alan Gilbert" To: Philippe =?iso-8859-1?Q?Mathieu-Daud=E9?= Subject: Re: [PATCH RESEND 12/13] tests/qtest/libqos/qgraph: Remove superfluous semicolons Message-ID: <20200218100519.GO3080@work-vm> References: <20200218094402.26625-1-philmd@redhat.com> <20200218094402.26625-13-philmd@redhat.com> MIME-Version: 1.0 In-Reply-To: <20200218094402.26625-13-philmd@redhat.com> User-Agent: Mutt/1.13.3 (2020-01-12) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: 31IcOHKSPqGEBO0qrYQR9g-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 207.211.31.81 X-BeenThere: qemu-arm@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Fam Zheng , Peter Maydell , Michael Tokarev , qemu-devel@nongnu.org, Gerd Hoffmann , qemu-block@nongnu.org, Juan Quintela , qemu-trivial@nongnu.org, Marcel Apfelbaum , Laurent Vivier , Thomas Huth , Eduardo Habkost , Alistair Francis , Julia Suvorova , Yuval Shaia , Alex Williamson , qemu-arm@nongnu.org, Stefan Hajnoczi , Aarushi Mehta , Richard Henderson , Kevin Wolf , Thomas Huth , Emanuele Giuseppe Esposito , Laurent Vivier , Max Reitz , Paolo Bonzini , Luc Michel Errors-To: qemu-arm-bounces+alex.bennee=linaro.org@nongnu.org Sender: "Qemu-arm" X-TUID: OOsZmAMIlY5w * Philippe Mathieu-Daud=E9 (philmd@redhat.com) wrote: > Fixes: fc281c80202 > Signed-off-by: Philippe Mathieu-Daud=E9 Reviewed-by: Dr. David Alan Gilbert > --- > Cc: Emanuele Giuseppe Esposito > --- > tests/qtest/libqos/qgraph.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/tests/qtest/libqos/qgraph.c b/tests/qtest/libqos/qgraph.c > index 7a7ae2a19e..ca01de0743 100644 > --- a/tests/qtest/libqos/qgraph.c > +++ b/tests/qtest/libqos/qgraph.c > @@ -474,7 +474,7 @@ QOSEdgeType qos_graph_edge_get_type(QOSGraphEdge *edg= e) > if (!edge) { > return -1; > } > - return edge->type;; > + return edge->type; > } > =20 > char *qos_graph_edge_get_dest(QOSGraphEdge *edge) > @@ -590,7 +590,7 @@ void qos_add_test(const char *name, const char *inter= face, > QOSTestFunc test_func, QOSGraphTestOptions *opts) > { > QOSGraphNode *node; > - char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name);= ; > + char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name); > QOSGraphTestOptions def_opts =3D { }; > =20 > if (!opts) { > --=20 > 2.21.1 >=20 -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.1 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C3E0AC34026 for ; Tue, 18 Feb 2020 10:07:01 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8E53820722 for ; Tue, 18 Feb 2020 10:07:01 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="S2kXHtmA" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8E53820722 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:59912 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3zmO-0007OZ-R5 for qemu-devel@archiver.kernel.org; Tue, 18 Feb 2020 05:07:00 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:47452) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3zlG-0005wp-D1 for qemu-devel@nongnu.org; Tue, 18 Feb 2020 05:05:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3zlF-0000uv-Av for qemu-devel@nongnu.org; Tue, 18 Feb 2020 05:05:50 -0500 Received: from us-smtp-2.mimecast.com ([207.211.31.81]:42195 helo=us-smtp-delivery-1.mimecast.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j3zlF-0000uF-5b for qemu-devel@nongnu.org; Tue, 18 Feb 2020 05:05:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582020348; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7fA3qA3hN2cAGYJmN+23/u+eYsRYv732LFFW/O7nLGA=; b=S2kXHtmATwfmQv0zzY3IjIYuH8duhex7C1Ih6Q/b9DC2TJKudPA3SccNzii2lVcFPi4Xf4 vhboeY/P64SUWZC5TVUnww0b9opDIQvBRGHoO7+qij7r2fhpCqMJRvGVgx6fb6VUUvY5v8 v+znHJyf4m7irqs9T8KI2pmp3VyjEco= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-297-31IcOHKSPqGEBO0qrYQR9g-1; Tue, 18 Feb 2020 05:05:47 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D79B2477; Tue, 18 Feb 2020 10:05:44 +0000 (UTC) Received: from work-vm (unknown [10.36.118.89]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 29CDF8CCC5; Tue, 18 Feb 2020 10:05:22 +0000 (UTC) Date: Tue, 18 Feb 2020 10:05:19 +0000 From: "Dr. David Alan Gilbert" To: Philippe =?iso-8859-1?Q?Mathieu-Daud=E9?= Subject: Re: [PATCH RESEND 12/13] tests/qtest/libqos/qgraph: Remove superfluous semicolons Message-ID: <20200218100519.GO3080@work-vm> References: <20200218094402.26625-1-philmd@redhat.com> <20200218094402.26625-13-philmd@redhat.com> MIME-Version: 1.0 In-Reply-To: <20200218094402.26625-13-philmd@redhat.com> User-Agent: Mutt/1.13.3 (2020-01-12) X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: 31IcOHKSPqGEBO0qrYQR9g-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 207.211.31.81 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Fam Zheng , Peter Maydell , Michael Tokarev , qemu-devel@nongnu.org, Gerd Hoffmann , "Edgar E. Iglesias" , qemu-block@nongnu.org, Juan Quintela , qemu-trivial@nongnu.org, Laurent Vivier , Thomas Huth , Eduardo Habkost , Alistair Francis , Julia Suvorova , Yuval Shaia , Alex Williamson , qemu-arm@nongnu.org, Stefan Hajnoczi , Aarushi Mehta , Richard Henderson , Kevin Wolf , Thomas Huth , Emanuele Giuseppe Esposito , Laurent Vivier , Max Reitz , Paolo Bonzini , Luc Michel Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" * Philippe Mathieu-Daud=E9 (philmd@redhat.com) wrote: > Fixes: fc281c80202 > Signed-off-by: Philippe Mathieu-Daud=E9 Reviewed-by: Dr. David Alan Gilbert > --- > Cc: Emanuele Giuseppe Esposito > --- > tests/qtest/libqos/qgraph.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/tests/qtest/libqos/qgraph.c b/tests/qtest/libqos/qgraph.c > index 7a7ae2a19e..ca01de0743 100644 > --- a/tests/qtest/libqos/qgraph.c > +++ b/tests/qtest/libqos/qgraph.c > @@ -474,7 +474,7 @@ QOSEdgeType qos_graph_edge_get_type(QOSGraphEdge *edg= e) > if (!edge) { > return -1; > } > - return edge->type;; > + return edge->type; > } > =20 > char *qos_graph_edge_get_dest(QOSGraphEdge *edge) > @@ -590,7 +590,7 @@ void qos_add_test(const char *name, const char *inter= face, > QOSTestFunc test_func, QOSGraphTestOptions *opts) > { > QOSGraphNode *node; > - char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name);= ; > + char *test_name =3D g_strdup_printf("%s-tests/%s", interface, name); > QOSGraphTestOptions def_opts =3D { }; > =20 > if (!opts) { > --=20 > 2.21.1 >=20 -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK