Skip to content

Commit 85d4073

Browse files
Apply suggestions from code review
Co-authored-by: Shubham Patil <shubham.patil@espressif.com>
1 parent fc4848c commit 85d4073

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/bridge-app/asr/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void emberAfActionsClusterInitCallback(EndpointId endpoint)
7171
VerifyOrReturn(endpoint == 1,
7272
ChipLogError(Zcl, "Actions cluster delegate is not implemented for endpoint with id %d.", endpoint));
7373
VerifyOrReturn(emberAfContainsServer(endpoint, app::Clusters::Actions::Id) == true,
74-
ChipLogError(Zcl, "Endpoint %d does not support Actions cluster.", endpoint));
74+
ChipLogError(Zcl, "Endpoint %u does not support Actions cluster.", endpoint));
7575
VerifyOrReturn(!sActionsDelegateImpl && !sActionsServer);
7676

7777
sActionsDelegateImpl = std::make_unique<app::Clusters::Actions::ActionsDelegateImpl>();

examples/bridge-app/bridge-common/include/bridged-actions-stub.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (c) 2024 Project CHIP Authors
3+
* Copyright (c) 2025 Project CHIP Authors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

examples/bridge-app/bridge-common/src/bridged-actions-stub.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (c) 2024 Project CHIP Authors
3+
* Copyright (c) 2025 Project CHIP Authors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

examples/bridge-app/esp32/main/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ void emberAfActionsClusterInitCallback(EndpointId endpoint)
404404
VerifyOrReturn(endpoint == 1,
405405
ChipLogError(Zcl, "Actions cluster delegate is not implemented for endpoint with id %d.", endpoint));
406406
VerifyOrReturn(emberAfContainsServer(endpoint, app::Clusters::Actions::Id) == true,
407-
ChipLogError(Zcl, "Endpoint %d does not support Actions cluster.", endpoint));
407+
ChipLogError(Zcl, "Endpoint %u does not support Actions cluster.", endpoint));
408408
VerifyOrReturn(!sActionsDelegateImpl && !sActionsServer);
409409

410410
sActionsDelegateImpl = std::make_unique<app::Clusters::Actions::ActionsDelegateImpl>();

examples/bridge-app/telink/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void emberAfActionsClusterInitCallback(chip::EndpointId endpoint)
4141
VerifyOrReturn(endpoint == 1,
4242
ChipLogError(Zcl, "Actions cluster delegate is not implemented for endpoint with id %d.", endpoint));
4343
VerifyOrReturn(emberAfContainsServer(endpoint, chip::app::Clusters::Actions::Id) == true,
44-
ChipLogError(Zcl, "Endpoint %d does not support Actions cluster.", endpoint));
44+
ChipLogError(Zcl, "Endpoint %u does not support Actions cluster.", endpoint));
4545
VerifyOrReturn(!sActionsDelegateImpl && !sActionsServer);
4646

4747
sActionsDelegateImpl = std::make_unique<chip::app::Clusters::Actions::ActionsDelegateImpl>();

0 commit comments

Comments
 (0)