mirror of
https://github.com/espressif/openthread.git
synced 2026-09-16 14:10:09 +00:00
[spinel] fix printf style output (#8401)
This commit is contained in:
@@ -522,7 +522,7 @@ void RadioSpinel<InterfaceType, ProcessContextType>::HandleNotification(SpinelIn
|
||||
|
||||
case SPINEL_CMD_PROP_VALUE_INSERTED:
|
||||
case SPINEL_CMD_PROP_VALUE_REMOVED:
|
||||
otLogInfoPlat("Ignored command %d", cmd);
|
||||
otLogInfoPlat("Ignored command %lu", ToUlong(cmd));
|
||||
break;
|
||||
|
||||
default:
|
||||
@@ -1677,7 +1677,7 @@ otError RadioSpinel<InterfaceType, ProcessContextType>::WaitResponse(void)
|
||||
{
|
||||
uint64_t end = otPlatTimeGet() + kMaxWaitTime * US_PER_MS;
|
||||
|
||||
otLogDebgPlat("Wait response: tid=%u key=%u", mWaitingTid, mWaitingKey);
|
||||
otLogDebgPlat("Wait response: tid=%u key=%lu", mWaitingTid, ToUlong(mWaitingKey));
|
||||
|
||||
do
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user