[clang-tidy] readability-inconsistent-declaration-parameter-name (#5796)

This commit is contained in:
Jonathan Hui
2020-11-11 10:35:36 -08:00
committed by GitHub
parent 3b72401739
commit ef4f33cb22
27 changed files with 71 additions and 66 deletions
+2 -2
View File
@@ -215,11 +215,11 @@ void otPlatRadioSetExtendedAddress(otInstance *aInstance, const otExtAddress *aE
}
}
void otPlatRadioSetShortAddress(otInstance *aInstance, uint16_t aShortAddr)
void otPlatRadioSetShortAddress(otInstance *aInstance, uint16_t aShortAddress)
{
if (g_testPlatRadioSetShortAddress)
{
g_testPlatRadioSetShortAddress(aInstance, aShortAddr);
g_testPlatRadioSetShortAddress(aInstance, aShortAddress);
}
}