[cli] replace 'PRIx64' use (#5615)

This commit is contained in:
Abtin Keshavarzian
2020-10-08 07:25:22 -07:00
committed by GitHub
parent 18344b1cb2
commit f6d1ffeffe
+1 -1
View File
@@ -70,7 +70,7 @@ otError Joiner::ProcessDiscerner(uint8_t aArgsLength, char *aArgs[])
VerifyOrExit(discerner != nullptr, error = OT_ERROR_NOT_FOUND);
mInterpreter.OutputLine("0x%" PRIx64 "/%u", discerner->mValue, discerner->mLength);
mInterpreter.OutputLine("0x%llx/%u", static_cast<unsigned long long>(discerner->mValue), discerner->mLength);
}
else
{