[cli] fix format string (#5474)

This commit is contained in:
Jonathan Hui
2020-08-30 17:53:50 -07:00
committed by GitHub
parent 2e9f1e50cd
commit 7a05ce5b14
+1 -1
View File
@@ -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());
}