mirror of
https://github.com/espressif/openthread.git
synced 2026-09-14 21:20:11 +00:00
[posix] fix fall-through issue (#7066)
When compiling OpenThread in Android, the compiler generates an error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough]
This commit is contained in:
@@ -423,6 +423,7 @@ void InfraNetif::ReceiveNetLinkMessage(void)
|
|||||||
|
|
||||||
OT_UNUSED_VARIABLE(errMsg);
|
OT_UNUSED_VARIABLE(errMsg);
|
||||||
otLogWarnPlat("netlink NLMSG_ERROR response: seq=%u, error=%d", header->nlmsg_seq, errMsg->error);
|
otLogWarnPlat("netlink NLMSG_ERROR response: seq=%u, error=%d", header->nlmsg_seq, errMsg->error);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user