summaryrefslogtreecommitdiff
path: root/savevm.c
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2013-11-28 12:01:14 -0200
committerJuan Quintela <quintela@redhat.com>2014-01-13 12:39:49 +0100
commit51b7fa5b3cf7678263382039a884aa2e74742bb6 (patch)
tree245f9008cfb45fe09cfd8ef1f3f9ed12ccdb6f42 /savevm.c
parent38ff78d363da0d2e0ad27853036b08eaa52ef18d (diff)
downloadqemu-51b7fa5b3cf7678263382039a884aa2e74742bb6.tar.gz
savevm.c: Coding style fix
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Orit Wasserman <owasserm@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'savevm.c')
-rw-r--r--savevm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/savevm.c b/savevm.c
index 66b8b5ec8b..bdb90ef09b 100644
--- a/savevm.c
+++ b/savevm.c
@@ -2114,7 +2114,8 @@ static SaveStateEntry *find_se(const char *idstr, int instance_id)
return NULL;
}
-static const VMStateDescription *vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
+static const VMStateDescription *
+ vmstate_get_subsection(const VMStateSubsection *sub, char *idstr)
{
while (sub && sub->needed) {
if (strcmp(idstr, sub->vmsd->name) == 0) {