From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46781) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TusXn-0002S1-GN for qemu-devel@nongnu.org; Mon, 14 Jan 2013 17:30:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TusXm-00039M-F7 for qemu-devel@nongnu.org; Mon, 14 Jan 2013 17:30:15 -0500 Received: from mail-ie0-f169.google.com ([209.85.223.169]:39589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TusXm-00039E-AA for qemu-devel@nongnu.org; Mon, 14 Jan 2013 17:30:14 -0500 Received: by mail-ie0-f169.google.com with SMTP id c14so6169182ieb.0 for ; Mon, 14 Jan 2013 14:30:13 -0800 (PST) Sender: fluxion From: Michael Roth Date: Mon, 14 Jan 2013 16:25:04 -0600 Message-Id: <1358202304-27072-2-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1358202304-27072-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1358202304-27072-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] qga: add missing commas in json docs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com From: Eric Blake * qga/qapi-schema.json: Use valid JSON. Signed-off-by: Eric Blake Signed-off-by: Michael Roth --- qga/qapi-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qga/qapi-schema.json b/qga/qapi-schema.json index ed0eb69..d91d903 100644 --- a/qga/qapi-schema.json +++ b/qga/qapi-schema.json @@ -31,7 +31,7 @@ # # Since: 1.1 # ## -{ 'command': 'guest-sync-delimited' +{ 'command': 'guest-sync-delimited', 'data': { 'id': 'int' }, 'returns': 'int' } @@ -69,7 +69,7 @@ # # Since: 0.15.0 ## -{ 'command': 'guest-sync' +{ 'command': 'guest-sync', 'data': { 'id': 'int' }, 'returns': 'int' } -- 1.7.9.5