Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix freebsd and macos build (contrib/libbtrie) #806

Merged
merged 4 commits into from May 17, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions contrib/libbtrie/src/btrie.c
Expand Up @@ -255,7 +255,7 @@ btrie_insert_a6(btrie_t *tree, const uint8_t *key, const uint8_t *mask,
uintptr_t value)
{
uint8_t bit;
uint i;
unsigned int i;
btrie_node_t *node, *next;

i = 0;
Expand Down Expand Up @@ -337,7 +337,7 @@ int
btrie_delete_a6(btrie_t *tree, const uint8_t *key, const uint8_t *mask)
{
uint8_t bit;
uint i;
unsigned int i;
btrie_node_t *node;

i = 0;
Expand Down Expand Up @@ -411,7 +411,7 @@ btrie_find_a6(btrie_t *tree, const uint8_t *key)
{
uint8_t bit;
uintptr_t value;
uint i;
unsigned int i;
btrie_node_t *node;

i = 0;
Expand Down