Skip to content

Commit

Permalink
Generalize print
Browse files Browse the repository at this point in the history
  • Loading branch information
adabreuti committed Mar 29, 2022
1 parent 4c24cff commit 030ad50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/CHIPDeviceController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1721,7 +1721,7 @@ void DeviceCommissioner::PerformCommissioningStep(DeviceProxy * proxy, Commissio
{
actualCountryCodeSize = 2;
memset(countryCodeStr, 58, actualCountryCodeSize);
ChipLogError(Controller, "Unable to find country code, defaulting to XX");
ChipLogError(Controller, "Unable to find country code, defaulting to %s", countryCodeStr);
}
chip::CharSpan countryCode(countryCodeStr, actualCountryCodeSize);

Expand Down

0 comments on commit 030ad50

Please sign in to comment.