From: Juan Quintela Date: Fri, 16 Oct 2009 09:29:03 +0000 (+0200) Subject: vmstate: fix indentation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5139931f885155a0c7650714c499aba719d1f208;p=qemu.git vmstate: fix indentation Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- diff --git a/hw/hw.h b/hw/hw.h index 89b605fc57..e4228f86a0 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, };