tests: Bluetooth: Mesh: fix omitted names

PR fixes using of the parameter with omitted names.

Signed-off-by: Aleksandr Khromykh <aleksandr.khromykh@nordicsemi.no>
This commit is contained in:
Aleksandr Khromykh 2023-07-18 10:34:13 +02:00 committed by Fabio Baltieri
parent e1f7f94480
commit b8f7c81dd3

View file

@ -77,7 +77,7 @@ bst_test_install_t test_installers[] = {
static struct k_thread bsim_mesh_thread;
static K_KERNEL_STACK_DEFINE(bsim_mesh_thread_stack, 4096);
static void bsim_mesh_entry_point(void *, void *, void *)
static void bsim_mesh_entry_point(void *unused1, void *unused2, void *unused3)
{
bst_main();
}