From: Juan Quintela Date: Fri, 16 Oct 2009 09:29:03 +0000 (+0200) Subject: vmstate: fix indentation X-Git-Tag: TizenStudio_2.0_p2.3~6910 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f635f3d094e6a86993f658d02b9aa0a6a71bd598;p=sdk%2Femulator%2Fqemu.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 89b605f..e4228f8 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, };