From e7490562668965f3433aa4270b88ce55bfa9e1e3 Mon Sep 17 00:00:00 2001 From: Stephen Crane Date: Wed, 18 Jun 2003 09:52:01 +0000 Subject: ... --- tools/hcitool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/hcitool.c b/tools/hcitool.c index 04d756eb..a8f79f6d 100644 --- a/tools/hcitool.c +++ b/tools/hcitool.c @@ -282,7 +282,7 @@ static void cmd_scan(int dev_id, int argc, char **argv) if (dev_id < 0) { dev_id = hci_get_route(&bdaddr); if (dev_id < 0) { - perror("Device is not available."); + perror("Device is not available"); exit(1); } } @@ -290,7 +290,7 @@ static void cmd_scan(int dev_id, int argc, char **argv) printf("Scanning ...\n"); num_rsp = hci_inquiry(dev_id, length, num_rsp, NULL, &info, flags); if (num_rsp < 0) { - perror("Inquiry failed."); + perror("Inquiry failed"); exit(1); } -- cgit