[radio] unify around otExtAddress type (#2029)

This commit is contained in:
Jonathan Hui
2017-07-28 08:05:06 -07:00
committed by GitHub
parent f77321ac9c
commit 5d7a03334f
27 changed files with 133 additions and 128 deletions
+1 -1
View File
@@ -881,7 +881,7 @@ void Interpreter::ProcessExtAddress(int argc, char *argv[])
if (argc == 0)
{
otBufferPtr extAddress(otLinkGetExtendedAddress(mInstance));
otBufferPtr extAddress(reinterpret_cast<const uint8_t *>(otLinkGetExtendedAddress(mInstance)));
OutputBytes(extAddress, OT_EXT_ADDRESS_SIZE);
mServer->OutputFormat("\r\n");
}