bluetooth: ots: Fix bt_ots_init paramter struct naming

Patch to rename struct bt_ots_init to struct bt_ots_init_param
to avoid duplicating the name bt_ots_init.

Fix for issue#45968

Signed-off-by: Jai Arora <infolinesoni@gmail.com>
This commit is contained in:
Jai Arora 2023-06-30 14:36:44 +05:30 committed by Carles Cufí
commit cf0ff30b53
4 changed files with 5 additions and 5 deletions

View file

@ -223,7 +223,7 @@ static int ots_init(void)
int err;
struct bt_ots *ots;
struct object_creation_data obj_data;
struct bt_ots_init ots_init;
struct bt_ots_init_param ots_init;
struct bt_ots_obj_add_param param;
const char * const first_object_name = "first_object.txt";
const char * const second_object_name = "second_object.gif";