Skip to content
Snippets Groups Projects
Commit a8df4845 authored by Aarushi Mehta's avatar Aarushi Mehta Committed by Laurent Vivier
Browse files

thunk: improve readability of allocation loop


Signed-off-by: default avatarAarushi Mehta <mehta.aaru20@gmail.com>
Reviewed-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
Message-Id: <a09acf9e093c09a70896bb9886370cf7f049f941.camel@gmail.com>
Signed-off-by: default avatarLaurent Vivier <laurent@vivier.eu>
parent 208d92df
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment