diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-09-19 15:03:12 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-09-19 15:03:12 -0700 |
commit | f5a213ec39cc6c19c4836d5aaca1573560e45884 (patch) | |
tree | 88776dc2457cae24be3bf73ea48d1e10bc3d387b /struct.c | |
parent | 975d8f52829951c2885b959af84abe66411e997e (diff) | |
download | txr-f5a213ec39cc6c19c4836d5aaca1573560e45884.tar.gz txr-f5a213ec39cc6c19c4836d5aaca1573560e45884.tar.bz2 txr-f5a213ec39cc6c19c4836d5aaca1573560e45884.zip |
vm, structs: use FLEX_ARRAY macro.
* vm.c (struct vm_closure): Use the FLEX_ARRAY macro to define
the trailing array at the end of the structure instead of
hard-coding [1].
* struct.c (struct struct_inst): Likewise.
Diffstat (limited to 'struct.c')
-rw-r--r-- | struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ struct struct_inst { cnum id : sizeof (cnum) * CHAR_BIT - TAG_SHIFT; unsigned lazy : 1; unsigned dirty : 1; - val slot[1]; + val slot[FLEX_ARRAY]; }; val struct_type_s, meth_s, print_s, make_struct_lit_s; |