From patchwork Fri Apr 12 13:58:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 236112 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 24C8C2C00B4 for ; Sat, 13 Apr 2013 00:00:37 +1000 (EST) Received: from localhost ([::1]:50168 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQeWp-00024t-F8 for incoming@patchwork.ozlabs.org; Fri, 12 Apr 2013 10:00:35 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53540) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQeUs-0007tf-0z for qemu-devel@nongnu.org; Fri, 12 Apr 2013 09:58:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQeUp-0004kx-AZ for qemu-devel@nongnu.org; Fri, 12 Apr 2013 09:58:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42501) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQeUp-0004kq-2a for qemu-devel@nongnu.org; Fri, 12 Apr 2013 09:58:31 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3CDwU45003340 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 12 Apr 2013 09:58:30 -0400 Received: from localhost (ovpn-113-61.phx2.redhat.com [10.3.113.61]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3CDwTiH004896; Fri, 12 Apr 2013 09:58:30 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Fri, 12 Apr 2013 09:58:23 -0400 Message-Id: <1365775103-18737-4-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1365775103-18737-1-git-send-email-lcapitulino@redhat.com> References: <1365775103-18737-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PULL 3/3] qapi: use valid JSON in schema 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 From: Eric Blake * qapi-schema.json: JSON doesn't allow trailing commas. Signed-off-by: Eric Blake Signed-off-by: Luiz Capitulino --- qapi-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index a184ce6..751d3c2 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1600,7 +1600,7 @@ ## { 'union': 'BlockdevAction', 'data': { - 'blockdev-snapshot-sync': 'BlockdevSnapshot', + 'blockdev-snapshot-sync': 'BlockdevSnapshot' } } ##