Commit ce0185eb authored by Matthieu Boutier's avatar Matthieu Boutier

Fix arithmetic on pointer warning.

parent 1f1bd92f
...@@ -577,7 +577,7 @@ static int ...@@ -577,7 +577,7 @@ static int
parse_kernel_route(const struct rt_msghdr *rtm, struct kernel_route *route) parse_kernel_route(const struct rt_msghdr *rtm, struct kernel_route *route)
{ {
struct sockaddr *sa; struct sockaddr *sa;
void *rta = (void*)rtm + sizeof(struct rt_msghdr); char *rta = (char*)rtm + sizeof(struct rt_msghdr);
uint32_t excluded_flags = 0; uint32_t excluded_flags = 0;
if(ifindex_lo < 0) { if(ifindex_lo < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment