]> git.proxmox.com Git - qemu.git/commitdiff
vmstate: fix indentation
authorJuan Quintela <quintela@redhat.com>
Fri, 16 Oct 2009 09:29:03 +0000 (11:29 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Tue, 27 Oct 2009 17:28:49 +0000 (12:28 -0500)
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/hw.h

diff --git a/hw/hw.h b/hw/hw.h
index 89b605fc57b7b099d1820182f7b97cae2773114b..e4228f86a01313fa107cb22cda0a19f880b738e5 100644 (file)
--- 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,
 };