[core] fix typo in rloc16 variable name (#12102)

This commit corrects a typo in the variable name `rloc16` which was
incorrectly written as `rlco16`.
This commit is contained in:
Abtin Keshavarzian
2025-11-03 21:10:03 -08:00
committed by GitHub
parent 11d389fcea
commit 2e25607eec
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -768,7 +768,7 @@ void TestNetworkDataDsnSrpServices(void)
{
SuccessOrQuit(iterator.GetNextDnsSrpAnycastInfo(anycastInfo));
printf("\nanycastInfo { %s, seq:%d, rlco16:%04x, version:%u }",
printf("\nanycastInfo { %s, seq:%d, rloc16:%04x, version:%u }",
anycastInfo.mAnycastAddress.ToString().AsCString(), anycastInfo.mSequenceNumber, anycastInfo.mRloc16,
anycastInfo.mVersion);
@@ -1046,7 +1046,7 @@ void TestNetworkDataDsnSrpAnycastSeqNumSelection(void)
{
SuccessOrQuit(iterator.GetNextDnsSrpAnycastInfo(anycastInfo));
printf("\n { %s, seq:%u, version:%u, rlco16:%04x }", anycastInfo.mAnycastAddress.ToString().AsCString(),
printf("\n { %s, seq:%u, version:%u, rloc16:%04x }", anycastInfo.mAnycastAddress.ToString().AsCString(),
anycastInfo.mSequenceNumber, anycastInfo.mVersion, anycastInfo.mRloc16);