From patchwork Mon Oct 19 18:42:51 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 36397 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 5513FB7B6F for ; Tue, 20 Oct 2009 05:54:31 +1100 (EST) Received: from localhost ([127.0.0.1]:37976 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MzxNE-0002Cr-JP for incoming@patchwork.ozlabs.org; Mon, 19 Oct 2009 14:54:28 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MzxD1-00065Y-L9 for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MzxCv-00061P-BD for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:53 -0400 Received: from [199.232.76.173] (port=49039 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MzxCv-00061I-1E for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44131) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MzxCu-0006Ix-I0 for qemu-devel@nongnu.org; Mon, 19 Oct 2009 14:43:48 -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 n9JIhlhh022558 for ; Mon, 19 Oct 2009 14:43:47 -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 n9JIhcBx012656; Mon, 19 Oct 2009 14:43:46 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Mon, 19 Oct 2009 20:42:51 +0200 Message-Id: <816f4d150a044b8e21a95cf30392055cf24ff01c.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 06/25] vmstate: fix indentation 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 --- hw/hw.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/hw.h b/hw/hw.h index 89c138d..cd42f74 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -281,12 +281,12 @@ struct VMStateInfo { }; enum VMStateFlags { - VMS_SINGLE = 0x001, - VMS_POINTER = 0x002, - VMS_ARRAY = 0x004, - VMS_STRUCT = 0x008, - VMS_VARRAY_INT32 = 0x010, /* Array with size in another field */ - VMS_BUFFER = 0x020, /* static sized buffer */ + VMS_SINGLE = 0x001, + VMS_POINTER = 0x002, + VMS_ARRAY = 0x004, + VMS_STRUCT = 0x008, + VMS_VARRAY_INT32 = 0x010, /* Array with size in another field */ + VMS_BUFFER = 0x020, /* static sized buffer */ VMS_ARRAY_OF_POINTER = 0x040, };