Merge pull request #9694 from naveenkaje/fix_icmpv6_warning

nanostack: icmpv6: fix build warning
pull/9660/head
Cruz Monrreal 2019-02-13 18:29:33 -06:00 committed by GitHub
commit 9be82d96d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1084,7 +1084,7 @@ buffer_t *icmpv6_up(buffer_t *buf)
case ICMPV6_TYPE_INFO_ECHO_REPLY: case ICMPV6_TYPE_INFO_ECHO_REPLY:
ipv6_neighbour_reachability_confirmation(buf->src_sa.address, buf->interface->id); ipv6_neighbour_reachability_confirmation(buf->src_sa.address, buf->interface->id);
/* fall through */ /* fall through */
case ICMPV6_TYPE_ERROR_DESTINATION_UNREACH: case ICMPV6_TYPE_ERROR_DESTINATION_UNREACH:
#ifdef HAVE_RPL_ROOT #ifdef HAVE_RPL_ROOT
@ -1092,7 +1092,7 @@ buffer_t *icmpv6_up(buffer_t *buf)
buf = rpl_control_source_route_error_handler(buf, cur); buf = rpl_control_source_route_error_handler(buf, cur);
} }
#endif #endif
/* no break */ /* fall through */
default: default:
if (buf) { if (buf) {