From 78af547e94d9d87d1f06ce0868e947f75af06fb7 Mon Sep 17 00:00:00 2001 From: Naga Bhavani Akella Date: Mon, 6 May 2024 13:10:43 +0530 Subject: [PATCH] clinet: Fix unregister-includes command unregister-includes command takes two parameters service uuid and included service uuid, since the space between them is missing, the menu option is not working. When two uuids separated with space is given, it is throwing error. --- client/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.c b/client/main.c index 51d08a67a..c8b0f7f1c 100644 --- a/client/main.c +++ b/client/main.c @@ -3060,7 +3060,7 @@ static const struct bt_shell_menu gatt_menu = { "Unregister application service" }, { "register-includes", " [handle]", cmd_register_includes, "Register as Included service in." }, - { "unregister-includes", "", + { "unregister-includes", " ", cmd_unregister_includes, "Unregister Included service." }, { "register-characteristic", -- 2.47.3