From 5f2be3022b11da6f181e3528f1a0befe919489fb Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 16 Jul 2015 03:49:31 -0400 Subject: [PATCH] [expansion] dictionary_type_t enum instead of uint64_t --- src/address_expansion_rule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/address_expansion_rule.h b/src/address_expansion_rule.h index b40ed7e0..a89b81f5 100644 --- a/src/address_expansion_rule.h +++ b/src/address_expansion_rule.h @@ -4,7 +4,7 @@ typedef struct address_expansion_rule { char *phrase; - uint64_t dictionary; + dictionary_type_t dictionary; int32_t canonical_index; } address_expansion_rule_t;