Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tehampson committed Nov 8, 2023
1 parent 53c62fe commit 3147069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chip-tool/commands/discover/Commands.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Resolve : public DiscoverCommand, public chip::AddressResolve::NodeListene
result.mrpRemoteConfig.mActiveRetransTimeout.count());
ChipLogProgress(chipTool, " Supports TCP: %s", result.supportsTcp ? "yes" : "no");
ChipLogProgress(chipTool, " ICD is operating as: %s", result.isICDOperatingAsLIT ? "LIT" : "SIT");
ChipLogProgress(chipTool, " Max paths per invoke: %" PRIu16, result.maxPathsPerInvoke);
ChipLogProgress(chipTool, " Max paths per invoke: %u", result.maxPathsPerInvoke);
SetCommandExitStatus(CHIP_NO_ERROR);
}

Expand Down

0 comments on commit 3147069

Please sign in to comment.