I decided it's more plesant to let the cpu not to think so hard (no
wasted space, the c member will by word aligned anyways.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92449
13f79535-47bb-0310-9956-
ffa450edef68
typedef struct filter_trie_node filter_trie_node;
typedef struct {
- char c;
+ int c;
filter_trie_node *child;
} filter_trie_child_ptr;
/* Link a trie node to its parent
*/
static void trie_node_link(apr_pool_t *p, filter_trie_node *parent,
- filter_trie_node *child, char c)
+ filter_trie_node *child, int c)
{
int i, j;