From ab41d6df80aa49e87c81b1a6383f9540fcc2d257 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 8 Dec 2017 08:52:53 -0200 Subject: [PATCH] client: Fix arguments of set-filter-clear Commands with no arguments shall use NULL not empty string. --- client/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.c b/client/main.c index 3534bd329..f0f62fe2a 100644 --- a/client/main.c +++ b/client/main.c @@ -2239,7 +2239,7 @@ static const struct bt_shell_menu scan_menu = { cmd_set_scan_filter_duplicate_data, "Set scan filter duplicate data", mode_generator }, - { "set-filter-clear", "", cmd_set_scan_filter_clear, + { "set-filter-clear", NULL, cmd_set_scan_filter_clear, "Clears discovery filter." }, { } }, }; -- 2.47.3