From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h2LPC-00066F-SG for qemu-devel@nongnu.org; Fri, 08 Mar 2019 14:43:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h2LPA-0002eT-0P for qemu-devel@nongnu.org; Fri, 08 Mar 2019 14:43:42 -0500 Message-ID: From: Aarushi Mehta Date: Sat, 09 Mar 2019 01:13:19 +0530 Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] thunk: improve readability of allocation loop List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org" Cc: "qemu-trivial@nongnu.org" , Julia Suvorova , Stefan Hajnoczi Signed-off-by: Aarushi Mehta --- thunk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunk.c b/thunk.c index 17f3d320bb..7f31cffe09 100644 --- a/thunk.c +++ b/thunk.c @@ -86,7 +86,7 @@ void thunk_register_struct(int id, const char *name, const argtype *types) #endif /* now we can alloc the data */ - for(i = 0;i < 2; i++) { + for (i = 0; i < ARRAY_SIZE(se->field_offsets); i++) { offset = 0; max_align = 1; se->field_offsets[i] = g_new(int, nb_fields); -- 2.17.1