From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40075) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ0Rv-00086e-3X for qemu-devel@nongnu.org; Wed, 10 Apr 2013 15:12:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQ0Rt-00006P-MW for qemu-devel@nongnu.org; Wed, 10 Apr 2013 15:12:51 -0400 Received: from qmta01.emeryville.ca.mail.comcast.net ([2001:558:fe2d:43:76:96:30:16]:55528) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQ0Rt-00006D-DX for qemu-devel@nongnu.org; Wed, 10 Apr 2013 15:12:49 -0400 From: Eric Blake Date: Wed, 10 Apr 2013 13:12:44 -0600 Message-Id: <1365621164-17079-1-git-send-email-eblake@redhat.com> Subject: [Qemu-devel] [PATCH] qapi: use valid JSON in schema List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, qemu-trivial@nongnu.org, lcapitulino@redhat.com * qapi-schema.json: JSON doesn't allow trailing commas. Signed-off-by: Eric Blake --- a multi-line regex search for ',[ \n]*[]}]' didn't turn up any other violations qapi-schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qapi-schema.json b/qapi-schema.json index db542f6..044517d 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1600,7 +1600,7 @@ ## { 'union': 'BlockdevAction', 'data': { - 'blockdev-snapshot-sync': 'BlockdevSnapshot', + 'blockdev-snapshot-sync': 'BlockdevSnapshot' } } ## -- 1.8.1.4