Skip to content

Commit 9be82d9

Browse files
author
Cruz Monrreal
authored
Merge pull request #9694 from naveenkaje/fix_icmpv6_warning
nanostack: icmpv6: fix build warning
2 parents da57191 + 8d0c94e commit 9be82d9

File tree

1 file changed

+2
-2
lines changed
  • features/nanostack/sal-stack-nanostack/source/Common_Protocols

1 file changed

+2
-2
lines changed

features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,15 +1084,15 @@ buffer_t *icmpv6_up(buffer_t *buf)
10841084

10851085
case ICMPV6_TYPE_INFO_ECHO_REPLY:
10861086
ipv6_neighbour_reachability_confirmation(buf->src_sa.address, buf->interface->id);
1087-
/* fall through */
1087+
/* fall through */
10881088

10891089
case ICMPV6_TYPE_ERROR_DESTINATION_UNREACH:
10901090
#ifdef HAVE_RPL_ROOT
10911091
if (buf->options.type == ICMPV6_TYPE_ERROR_DESTINATION_UNREACH && buf->options.code == ICMPV6_CODE_DST_UNREACH_SRC_RTE_HDR_ERR) {
10921092
buf = rpl_control_source_route_error_handler(buf, cur);
10931093
}
10941094
#endif
1095-
/* no break */
1095+
/* fall through */
10961096

10971097
default:
10981098
if (buf) {

0 commit comments

Comments
 (0)