Skip to content

Commit b07f474

Browse files
sjanccarlescufi
authored andcommitted
bluetooth: tester: Fix copy paste issue in config_mod_sub_ovw
stuct btp_mesh_cfg_model_sub_add_cmd was used instead of struct btp_mesh_cfg_model_sub_ovw_cmd for parsing command. Signed-off-by: Szymon Janc <[email protected]>
1 parent 26cf0b6 commit b07f474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/bluetooth/tester/src/btp_mesh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ static uint8_t config_mod_sub_add(const void *cmd, uint16_t cmd_len,
13791379
static uint8_t config_mod_sub_ovw(const void *cmd, uint16_t cmd_len,
13801380
void *rsp, uint16_t *rsp_len)
13811381
{
1382-
const struct btp_mesh_cfg_model_sub_add_cmd *cp = cmd;
1382+
const struct btp_mesh_cfg_model_sub_ovw_cmd *cp = cmd;
13831383
struct btp_mesh_cfg_model_sub_add_rp *rp = rsp;
13841384
uint8_t status;
13851385
int err;

0 commit comments

Comments
 (0)