]> git.proxmox.com Git - mirror_frr.git/blobdiff - isisd/fabricd.c
*: Replace hash_cmp function return value to a bool
[mirror_frr.git] / isisd / fabricd.c
index 7951efe5a114016c4d6353fea176fd01d600a277..76c8087f2d8331b14bfffee89a2552cd88adadaa 100644 (file)
@@ -105,7 +105,7 @@ static unsigned neighbor_entry_hash_key(void *np)
        return jhash(n->vertex->N.id, ISIS_SYS_ID_LEN, 0x55aa5a5a);
 }
 
-static int neighbor_entry_hash_cmp(const void *a, const void *b)
+static bool neighbor_entry_hash_cmp(const void *a, const void *b)
 {
        const struct neighbor_entry *na = a, *nb = b;