Skip to content

Commit

Permalink
Removing warning
Browse files Browse the repository at this point in the history
  • Loading branch information
shgutte committed Sep 17, 2024
1 parent aaa8aa2 commit 2c517ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/refrigerator-app/silabs/src/RefrigeratorManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void RefrigeratorManager::RefAndTempCtrlAttributeChangeHandler(EndpointId endpoi
break;

default: {
ChipLogDetail(AppServer, "Unhandled Refrigerator and Temprature attribute %d", attributeId);
ChipLogDetail(AppServer, "Unhandled Refrigerator and Temprature attribute %ld", attributeId);
return;
}
break;
Expand Down Expand Up @@ -163,7 +163,7 @@ void RefrigeratorManager::TempCtrlAttributeChangeHandler(EndpointId endpointId,
break;

default: {
ChipLogDetail(AppServer, "Unhandled Temprature controlled attribute %d", attributeId);
ChipLogDetail(AppServer, "Unhandled Temprature controlled attribute %ld", attributeId);
return;
}
break;
Expand Down Expand Up @@ -197,7 +197,7 @@ void RefrigeratorManager::RefAlaramAttributeChangeHandler(EndpointId endpointId,
break;

default: {
ChipLogDetail(AppServer, "Unhandled Refrigerator Alarm attribute %x", attributeId);
ChipLogDetail(AppServer, "Unhandled Refrigerator Alarm attribute %ld", attributeId);
return;
}
break;
Expand Down

0 comments on commit 2c517ba

Please sign in to comment.