From nobody Fri Nov 7 18:48:29 2025 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 154834114301052.98675465440965; Thu, 24 Jan 2019 06:45:43 -0800 (PST) Received: from localhost ([127.0.0.1]:55107 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmgFt-00011b-IO for importer@patchew.org; Thu, 24 Jan 2019 09:45:21 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47953) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmg9X-0004Iq-6V for qemu-devel@nongnu.org; Thu, 24 Jan 2019 09:38:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmg9V-0004nz-4I for qemu-devel@nongnu.org; Thu, 24 Jan 2019 09:38:47 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52482) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gmg9U-0004Ty-OC for qemu-devel@nongnu.org; Thu, 24 Jan 2019 09:38:44 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3770EC05D274 for ; Thu, 24 Jan 2019 14:38:27 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-138.ams2.redhat.com [10.36.116.138]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0324868D24 for ; Thu, 24 Jan 2019 14:38:27 +0000 (UTC) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id BD71411385E4; Thu, 24 Jan 2019 15:38:25 +0100 (CET) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 24 Jan 2019 15:38:22 +0100 Message-Id: <20190124143825.25921-2-armbru@redhat.com> In-Reply-To: <20190124143825.25921-1-armbru@redhat.com> References: <20190124143825.25921-1-armbru@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Thu, 24 Jan 2019 14:38:27 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PULL 1/4] qapi: Belatedly update docs for commit 9c2f56e9f9d X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" Signed-off-by: Markus Armbruster Message-Id: <20181218182234.28876-2-armbru@redhat.com> Reviewed-by: Marc-Andr=C3=A9 Lureau --- docs/devel/qapi-code-gen.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/devel/qapi-code-gen.txt b/docs/devel/qapi-code-gen.txt index 43bd853e69..418a607842 100644 --- a/docs/devel/qapi-code-gen.txt +++ b/docs/devel/qapi-code-gen.txt @@ -1369,8 +1369,8 @@ Example: void qapi_event_send_my_event(void); =20 typedef enum example_QAPIEvent { - EXAMPLE_QAPI_EVENT_MY_EVENT =3D 0, - EXAMPLE_QAPI_EVENT__MAX =3D 1, + EXAMPLE_QAPI_EVENT_MY_EVENT, + EXAMPLE_QAPI_EVENT__MAX, } example_QAPIEvent; =20 #define example_QAPIEvent_str(val) \ --=20 2.17.2