#ifdef WITH_PATH_COMPRESSION
if (node->used == 1) {
#ifdef TESTING
- bool found;
+ bool found = false;
#endif
int i;
void *trie;
- found = false;
for (i = 0; i < (1 << node->size); i++) {
if (node->entry[i]) {
+#ifdef WITH_TESTING
found = true;
+#endif
chunk = i;
break;
}
{
int i, used;
uint16_t base, mask;
- int bytes, bits_used;
+ int bits_used;
uint8_t *out;
fr_trie_node_t *node;
/*
* Number of bytes we will have in the output buffer.
*/
- bytes = BYTES(depth + node->size);
base <<= 8;
used = 0;