Skip to content

Commit 1e5375a

Browse files
committed
Fix restyle issue
1 parent 22a8c11 commit 1e5375a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/chef/common/clusters/audio-output/AudioOutputManager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
*/
1818

1919
#include <app-common/zap-generated/attributes/Accessors.h>
20-
#include <app/util/config.h>
2120
#include <app/AttributeValueEncoder.h>
21+
#include <app/util/config.h>
2222
#include <map>
2323

2424
#ifdef MATTER_DM_PLUGIN_AUDIO_OUTPUT_SERVER
@@ -43,7 +43,7 @@ AudioOutputManager::AudioOutputManager(chip::EndpointId endpoint) : mEndpoint(en
4343
uint8_t AudioOutputManager::HandleGetCurrentOutput()
4444
{
4545
uint8_t currentOutput = 1;
46-
Status status = Attributes::CurrentOutput::Get(mEndpoint, &currentOutput);
46+
Status status = Attributes::CurrentOutput::Get(mEndpoint, &currentOutput);
4747
if (Status::Success != status)
4848
{
4949
ChipLogError(Zcl, "Unable to get CurrentOutput attribute, err:0x%x", to_underlying(status));

0 commit comments

Comments
 (0)