mirror of
https://github.com/espressif/openthread.git
synced 2026-09-13 12:40:05 +00:00
[cli] fix format string (#5474)
This commit is contained in:
+1
-1
@@ -906,7 +906,7 @@ void Interpreter::ProcessChannel(uint8_t aArgsLength, char *aArgs[])
|
||||
Mac::ChannelMask favoredMask(otChannelManagerGetFavoredChannels(mInstance));
|
||||
|
||||
OutputFormat("delay: %d\r\n", otChannelManagerGetDelay(mInstance));
|
||||
OutputFormat("interval: %lu\r\n", otChannelManagerGetAutoChannelSelectionInterval(mInstance));
|
||||
OutputFormat("interval: %u\r\n", otChannelManagerGetAutoChannelSelectionInterval(mInstance));
|
||||
OutputFormat("supported: %s\r\n", supportedMask.ToString().AsCString());
|
||||
OutputFormat("favored: %s\r\n", supportedMask.ToString().AsCString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user