From fedfb7fa29bdabcf6654feef28827be25f437a11 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 22 Jun 2015 14:48:56 +0200 Subject: [PATCH] Bluetooth: Make cmd_scan_* parameters explicit void Change-Id: I3b6fb2ecfb0a4572f3583991f2a94667442fd065 Signed-off-by: Szymon Janc --- samples/bluetooth/shell/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/bluetooth/shell/src/main.c b/samples/bluetooth/shell/src/main.c index cd0dc93f133..6a250bfeeb0 100644 --- a/samples/bluetooth/shell/src/main.c +++ b/samples/bluetooth/shell/src/main.c @@ -194,7 +194,7 @@ static void cmd_disconnect(int argc, char *argv[]) bt_conn_put(conn); } -static void cmd_active_scan_on() +static void cmd_active_scan_on(void) { int err; @@ -206,7 +206,7 @@ static void cmd_active_scan_on() } } -static void cmd_scan_off() +static void cmd_scan_off(void) { int err;