diff --git a/src/trie_search.h b/src/trie_search.h index 54f65e2d..b5e5ddb2 100644 --- a/src/trie_search.h +++ b/src/trie_search.h @@ -25,7 +25,7 @@ typedef struct phrase { VECTOR_INIT(phrase_array, phrase_t) -#define NULL_PHRASE (phrase_t){0, 0, 0}; +#define NULL_PHRASE (phrase_t){0, 0, 0} phrase_array *trie_search(trie_t *self, char *text); bool trie_search_from_index(trie_t *self, char *text, uint32_t start_node_id, phrase_array **phrases);