From patchwork Mon Jan 14 22:25:04 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 211938 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 50F6A2C0087 for ; Tue, 15 Jan 2013 09:30:30 +1100 (EST) Received: from localhost ([::1]:57568 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TusXz-0002T4-U2 for incoming@patchwork.ozlabs.org; Mon, 14 Jan 2013 17:30:27 -0500 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=mv3MB1OPQ/U/w2jADlBLe2nGdMsSdv/d5yOLVHrng/s=; b=pYzslGdcg5IuGhUBDduRQoOr0oEvEsMaM0znM5lV1DMcO9qaMX2a5zwPUX8klW/2f6 ZtbFF+mKs+znc5WBdh6WQfrt60jCHQnUQf5Veyfp3pSewOcyPLmyFvp7o+NsvBCwHD8L 9P+mj0m0uxG8lcl1c00//NZrM9+GirO+KxhvDIPLMskQ8R6hWBjjW9iNdxjt0ZXYjGux bGUbKHE1bq6zdPbp4j7qFQ4OelE8gXv7jeWjQSA8inAbfbUo+Z07gjUfc6wNdBE9k5SR RwqDK+txHi4fMUQi6+2ZPqi4dfyxYwz4Y6YrmGmrgTkh1EqKIX4DCpqKBgJIKxrxZ3vU zB1A== X-Received: by 10.50.40.225 with SMTP id a1mr110997igl.7.1358202613835; Mon, 14 Jan 2013 14:30:13 -0800 (PST) Received: from localhost ([32.97.110.59]) by mx.google.com with ESMTPS id dc8sm463122igb.15.2013.01.14.14.30.10 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 14 Jan 2013 14:30:13 -0800 (PST) From: Michael Roth To: qemu-devel@nongnu.org Date: Mon, 14 Jan 2013 16:25:04 -0600 Message-Id: <1358202304-27072-2-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.9.5 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> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.223.169 Cc: aliguori@us.ibm.com Subject: [Qemu-devel] [PATCH] qga: add missing commas in json docs 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 * 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' }