diff options
| author | Aarushi Mehta <mehta.aaru20@gmail.com> | 2019-03-09 01:13:19 +0530 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2019-03-11 18:48:20 +0100 |
| commit | a8df4845a093e79f9517da7a8e03937f85e9c6d9 (patch) | |
| tree | 79ae8df1aa5e596e7c9a6ab6c441deecff124fcc | |
| parent | 208d92df447bde0f1f810fae8a2c523cdeb7a28f (diff) | |
| download | focaccia-qemu-a8df4845a093e79f9517da7a8e03937f85e9c6d9.tar.gz focaccia-qemu-a8df4845a093e79f9517da7a8e03937f85e9c6d9.zip | |
thunk: improve readability of allocation loop
Signed-off-by: Aarushi Mehta <mehta.aaru20@gmail.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <a09acf9e093c09a70896bb9886370cf7f049f941.camel@gmail.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
| -rw-r--r-- | thunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |