From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58852) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQGxr-00010g-M9 for qemu-devel@nongnu.org; Thu, 11 Apr 2013 08:50:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQGxq-0008Ax-1R for qemu-devel@nongnu.org; Thu, 11 Apr 2013 08:50:55 -0400 Date: Thu, 11 Apr 2013 08:50:50 -0400 From: Luiz Capitulino Message-ID: <20130411085050.3c3847bf@redhat.com> In-Reply-To: <1365621164-17079-1-git-send-email-eblake@redhat.com> References: <1365621164-17079-1-git-send-email-eblake@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] qapi: use valid JSON in schema List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Blake Cc: kwolf@redhat.com, qemu-trivial@nongnu.org, qemu-devel@nongnu.org On Wed, 10 Apr 2013 13:12:44 -0600 Eric Blake wrote: > * qapi-schema.json: JSON doesn't allow trailing commas. > > Signed-off-by: Eric Blake Applied to the qmp branch, thanks. > --- > > 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' > } } > > ##