diff options
author | Sri Mohana Singamsetty <msingamsetty@vmware.com> | 2018-10-23 18:53:39 +0200 |
---|---|---|
committer | Sri Mohana Singamsetty <msingamsetty@vmware.com> | 2018-10-23 18:53:39 +0200 |
commit | 168012eb9d725ad10397ce563e76402464b65c50 (patch) | |
tree | a39aca125924fe6c29a14f3ba4daf3efa7e92b31 /lib/command.c | |
parent | bgpd:Fixing the signature of community_free function (diff) | |
parent | Merge pull request #3204 from ton31337/fix/make_vrf_import_default_selectable (diff) | |
download | frr-168012eb9d725ad10397ce563e76402464b65c50.tar.xz frr-168012eb9d725ad10397ce563e76402464b65c50.zip |
Merge branch 'master' of https://github.com/FRRouting/frr into community
Diffstat (limited to 'lib/command.c')
-rw-r--r-- | lib/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/command.c b/lib/command.c index 6fe4ae2d8..839c37b10 100644 --- a/lib/command.c +++ b/lib/command.c @@ -337,7 +337,7 @@ static unsigned int cmd_hash_key(void *p) return jhash(p, size, 0); } -static int cmd_hash_cmp(const void *a, const void *b) +static bool cmd_hash_cmp(const void *a, const void *b) { return a == b; } |