Skip to content

Commit

Permalink
Fix compilation errors in scenes-client and groups-client
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragatal committed Jan 20, 2022
1 parent 6dbf79d commit 631a460
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/clusters/groups-client/groups-client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ bool emberAfGroupsClusterGetGroupMembershipResponseCallback(app::CommandHandler
{
emberAfGroupsClusterPrint(" [0x%2x]", emberAfGetInt16u(groupList + (i << 1), 0, 2));
}
emberAfGroupsClusterPrintln("");
emberAfGroupsClusterPrintln("%s","");
emberAfSendImmediateDefaultResponse(EMBER_ZCL_STATUS_SUCCESS);
return true;
}
Expand Down
6 changes: 3 additions & 3 deletions src/app/clusters/scenes-client/scenes-client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include <app/CommandHandler.h>
#include <app/util/af.h>

#include <zap-generated/command-id.h>
#include <app-common/zap-generated/command-id.h>

using namespace chip;

Expand Down Expand Up @@ -100,7 +100,7 @@ bool emberAfScenesClusterGetSceneMembershipResponseCallback(app::CommandHandler
}
}

emberAfScenesClusterPrintln("");
emberAfGroupsClusterPrintln("%s","");
emberAfSendImmediateDefaultResponse(EMBER_ZCL_STATUS_SUCCESS);
return true;
}
Expand Down Expand Up @@ -157,7 +157,7 @@ bool emberAfPluginScenesClientParseViewSceneResponse(const EmberAfClusterCommand
}
}

emberAfScenesClusterPrintln("");
emberAfGroupsClusterPrintln("%s","");
emberAfSendDefaultResponse(cmd, EMBER_ZCL_STATUS_SUCCESS);
return true;
}

0 comments on commit 631a460

Please sign in to comment.