summaryrefslogtreecommitdiff
path: root/zebra/zebra_fpm_protobuf.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas.abraitis@gmail.com>2020-04-08 08:57:15 +0300
committerDonatas Abraitis <donatas.abraitis@gmail.com>2020-04-08 17:15:06 +0300
commitc4efd0f4235d1151a95add06ad5ccb42c7dcff21 (patch)
tree9aaff71f3b3ae6c23457092f6c78a25deec6adb7 /zebra/zebra_fpm_protobuf.c
parentc446af503e10e6b976500af81aa159512430d0d6 (diff)
*: Do not cast to the same type
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'zebra/zebra_fpm_protobuf.c')
-rw-r--r--zebra/zebra_fpm_protobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_fpm_protobuf.c b/zebra/zebra_fpm_protobuf.c
index ade4b636d6..4b31cc0281 100644
--- a/zebra/zebra_fpm_protobuf.c
+++ b/zebra/zebra_fpm_protobuf.c
@@ -294,7 +294,7 @@ int zfpm_protobuf_encode_route(rib_dest_t *dest, struct route_entry *re,
return 0;
}
- len = fpm__message__pack(msg, (uint8_t *)in_buf);
+ len = fpm__message__pack(msg, in_buf);
assert(len <= in_buf_len);
QPB_RESET_STACK_ALLOCATOR(allocator);