diff options
-rw-r--r-- | driver-ti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver-ti.c b/driver-ti.c index 952bf76..d598db7 100644 --- a/driver-ti.c +++ b/driver-ti.c @@ -32,7 +32,7 @@ struct trie_node_key { struct trie_node_arr { trie_nodetype type; unsigned char min, max; /* INCLUSIVE endpoints of the extent range */ - struct trie_node *arr[0]; + struct trie_node *arr[]; /* dynamic size at allocation time */ }; typedef struct { |