summaryrefslogtreecommitdiff
path: root/bgpd/bgp_community.c
diff options
context:
space:
mode:
Diffstat (limited to 'bgpd/bgp_community.c')
-rw-r--r--bgpd/bgp_community.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_community.c b/bgpd/bgp_community.c
index 195c0f394c..11f32cdf20 100644
--- a/bgpd/bgp_community.c
+++ b/bgpd/bgp_community.c
@@ -558,7 +558,7 @@ char *community_str(struct community *com, bool make_json)
hash package.*/
unsigned int community_hash_make(const struct community *com)
{
- uint32_t *pnt = (uint32_t *)com->val;
+ uint32_t *pnt = com->val;
return jhash2(pnt, com->size, 0x43ea96c1);
}