mirror of
https://github.com/espressif/openthread.git
synced 2026-08-17 16:09:51 +00:00
[message] change Message::Free() to return void (#2071)
This commit is contained in:
@@ -38,9 +38,9 @@
|
||||
|
||||
using namespace ot;
|
||||
|
||||
otError otMessageFree(otMessage *aMessage)
|
||||
void otMessageFree(otMessage *aMessage)
|
||||
{
|
||||
return static_cast<Message *>(aMessage)->Free();
|
||||
static_cast<Message *>(aMessage)->Free();
|
||||
}
|
||||
|
||||
uint16_t otMessageGetLength(otMessage *aMessage)
|
||||
|
||||
Reference in New Issue
Block a user