From patchwork Wed Jun 19 09:23:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amos Kong X-Patchwork-Id: 252528 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 2D7B52C0701 for ; Wed, 19 Jun 2013 19:24:05 +1000 (EST) Received: from localhost ([::1]:49146 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpEcU-00077L-Bc for incoming@patchwork.ozlabs.org; Wed, 19 Jun 2013 05:24:02 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpEcD-000774-92 for qemu-devel@nongnu.org; Wed, 19 Jun 2013 05:23:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpEcB-00070J-Qj for qemu-devel@nongnu.org; Wed, 19 Jun 2013 05:23:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7558) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpEcB-000701-J9; Wed, 19 Jun 2013 05:23:43 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r5J9NeDa021289 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 Jun 2013 05:23:41 -0400 Received: from amosk.info.com ([10.66.6.179]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r5J9NYhq025830; Wed, 19 Jun 2013 05:23:38 -0400 From: Amos Kong To: qemu-devel@nongnu.org Date: Wed, 19 Jun 2013 17:23:28 +0800 Message-Id: <1371633808-4362-2-git-send-email-akong@redhat.com> In-Reply-To: <1371633808-4362-1-git-send-email-akong@redhat.com> References: <1371633808-4362-1-git-send-email-akong@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-trivial@nongnu.org, aliguori@us.ibm.com, lilei@linux.vnet.ibm.com Subject: [Qemu-devel] [PATCH] qapi: lack of two commas in dict X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Amos Kong --- qapi-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 128cc58..38acd25 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -388,7 +388,7 @@ # # Since: 1.4 ## -{ 'enum': 'DataFormat' +{ 'enum': 'DataFormat', 'data': [ 'utf8', 'base64' ] } ## @@ -1589,7 +1589,7 @@ # # Since: 1.1 ## -{ 'enum': 'NewImageMode' +{ 'enum': 'NewImageMode', 'data': [ 'existing', 'absolute-paths' ] } ##