* [PATCH] tools/sco-tester: Remove not used function argument
@ 2014-03-05 7:15 Marcin Kraglak
2014-03-05 12:03 ` Johan Hedberg
0 siblings, 1 reply; 2+ messages in thread
From: Marcin Kraglak @ 2014-03-05 7:15 UTC (permalink / raw)
To: linux-bluetooth
---
tools/sco-tester.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/sco-tester.c b/tools/sco-tester.c
index 25e4af6..db45ef0 100644
--- a/tools/sco-tester.c
+++ b/tools/sco-tester.c
@@ -415,7 +415,7 @@ end:
close(sk);
}
-static int create_sco_sock(struct test_data *data, uint16_t psm)
+static int create_sco_sock(struct test_data *data)
{
const uint8_t *master_bdaddr;
struct sockaddr_sco addr;
@@ -514,7 +514,7 @@ static void test_connect(const void *test_data)
GIOChannel *io;
int sk;
- sk = create_sco_sock(data, 0);
+ sk = create_sco_sock(data);
if (sk < 0) {
tester_test_failed();
return;
@@ -543,7 +543,7 @@ static void test_connect_transp(const void *test_data)
int sk, err;
struct bt_voice voice;
- sk = create_sco_sock(data, 0);
+ sk = create_sco_sock(data);
if (sk < 0) {
tester_test_failed();
return;
--
1.8.5.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-05 12:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 7:15 [PATCH] tools/sco-tester: Remove not used function argument Marcin Kraglak
2014-03-05 12:03 ` Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox