From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50301) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2lVS-0001a4-Ml for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:41:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2lVL-0006WZ-6O for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:40:58 -0500 Received: from mx1.redhat.com ([209.132.183.28]:51165) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2lVK-0006WR-VU for qemu-devel@nongnu.org; Mon, 13 Jan 2014 12:40:51 -0500 From: Juan Quintela Date: Mon, 13 Jan 2014 18:39:53 +0100 Message-Id: <1389634834-24181-9-git-send-email-quintela@redhat.com> In-Reply-To: <1389634834-24181-1-git-send-email-quintela@redhat.com> References: <1389634834-24181-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 08/49] savevm.c: Coding style fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Eduardo Habkost , anthony@codemonkey.ws From: Eduardo Habkost Signed-off-by: Eduardo Habkost Reviewed-by: Orit Wasserman Signed-off-by: Juan Quintela --- savevm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/savevm.c b/savevm.c index 66b8b5e..bdb90ef 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) { -- 1.8.4.2