From patchwork Mon Oct 19 18:42:48 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 36394 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8D426B7B75 for ; Tue, 20 Oct 2009 05:49:33 +1100 (EST) Received: from localhost ([127.0.0.1]:38250 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MzxIQ-00005n-FY for incoming@patchwork.ozlabs.org; Mon, 19 Oct 2009 14:49:30 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MzxCw-00061t-97 for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MzxCr-00060C-Gu for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:49 -0400 Received: from [199.232.76.173] (port=49036 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MzxCr-000609-Aq for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36293) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MzxCq-0006IO-U2 for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:45 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9JIhiPf022553 for ; Mon, 19 Oct 2009 14:43:44 -0400 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n9JIhcBu012656; Mon, 19 Oct 2009 14:43:43 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Mon, 19 Oct 2009 20:42:48 +0200 Message-Id: <4a1e16a34091c9f7d2a01fae3a1e2e8b8f70bece.1255976538.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 03/25] vnmstate: fix name for uint8_equal X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- savevm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/savevm.c b/savevm.c index 27a7686..3d91202 100644 --- a/savevm.c +++ b/savevm.c @@ -863,7 +863,7 @@ static int get_uint8_equal(QEMUFile *f, void *pv, size_t size) } const VMStateInfo vmstate_info_uint8_equal = { - .name = "int32 equal", + .name = "uint8 equal", .get = get_uint8_equal, .put = put_uint8, };