From: Aarushi Mehta Date: Fri, 8 Mar 2019 19:43:19 +0000 (+0530) Subject: thunk: improve readability of allocation loop X-Git-Tag: v4.0.0-rc0~33^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8df4845a093e79f9517da7a8e03937f85e9c6d9;p=thirdparty%2Fqemu.git thunk: improve readability of allocation loop Signed-off-by: Aarushi Mehta Reviewed-by: Stefan Hajnoczi Message-Id: Signed-off-by: Laurent Vivier --- diff --git a/thunk.c b/thunk.c index 17f3d320bb8..7f31cffe096 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);