From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yrn6s-0000jR-QK for qemu-devel@nongnu.org; Mon, 11 May 2015 08:47:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yrn6s-0001vC-27 for qemu-devel@nongnu.org; Mon, 11 May 2015 08:47:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41971) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yrn6r-0001v4-S3 for qemu-devel@nongnu.org; Mon, 11 May 2015 08:47:02 -0400 Date: Mon, 11 May 2015 14:46:57 +0200 From: "Michael S. Tsirkin" Message-ID: <1431329108-2605-2-git-send-email-mst@redhat.com> References: <1431329108-2605-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1431329108-2605-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 01/28] acpi-build: close } in comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Richard Henderson , Paolo Bonzini missing } confuses editors Signed-off-by: Michael S. Tsirkin --- hw/i386/acpi-build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c index e761005..1cfe265 100644 --- a/hw/i386/acpi-build.c +++ b/hw/i386/acpi-build.c @@ -976,7 +976,7 @@ build_ssdt(GArray *table_data, GArray *linker, } /* build Method(MEMORY_SLOT_NOTIFY_METHOD, 2) { - * If (LEqual(Arg0, 0x00)) {Notify(MP00, Arg1)} ... + * If (LEqual(Arg0, 0x00)) {Notify(MP00, Arg1)} ... } */ method = aml_method(stringify(MEMORY_SLOT_NOTIFY_METHOD), 2); for (i = 0; i < nr_mem; i++) { -- MST