diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-06 10:18:25 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:57:27 +0200 |
commit | 624971371bba5ca9a9fa6a862c70b0e928e5649c (patch) | |
tree | f432069412545033b750424fa7e73db1e883741a /plugins/lib/bluetooth/hal-bt-cb.c | |
parent | f410a02a35b565de39f247c8ee48e7b98ff78432 (diff) |
Fix little mistakes/typo in hal bluetooth plugin
Correct typo.
Remove an unnecessary message print.
Update returned error code.
Change-Id: If52965b8c7158dfd17bbba411d6dc2c4aafe970a
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to 'plugins/lib/bluetooth/hal-bt-cb.c')
-rw-r--r-- | plugins/lib/bluetooth/hal-bt-cb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lib/bluetooth/hal-bt-cb.c b/plugins/lib/bluetooth/hal-bt-cb.c index c4f0231..243b3b9 100644 --- a/plugins/lib/bluetooth/hal-bt-cb.c +++ b/plugins/lib/bluetooth/hal-bt-cb.c @@ -121,7 +121,7 @@ void HalBtGetSelectedBluetoothDevice(AFB_ReqT request) } if(! localHalBtPluginData->selectedBtDevice) { - AFB_ReqSuccess(request, NULL, "No bluetooth device connected, cannot provide selected device"); + AFB_ReqSuccess(request, NULL, "No bluetooth device selected"); return; } |