From 8b1236531efb7a485c6386888468db920cae6d99 Mon Sep 17 00:00:00 2001 From: Mikel Astiz Date: Fri, 19 Oct 2012 10:11:21 +0200 Subject: [PATCH] bluetooth: Use assertions when setting off profile Setting the card profile to off cannot fail, therefore assertions can be used when calling pa_card_set_profile(). --- src/modules/bluetooth/module-bluetooth-device.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c index d78ce8c5e..ee17fdeb9 100644 --- a/src/modules/bluetooth/module-bluetooth-device.c +++ b/src/modules/bluetooth/module-bluetooth-device.c @@ -605,8 +605,7 @@ static int device_process_msg(pa_msgobject *obj, int code, void *data, int64_t o pa_log_debug("Switching the profile to off due to IO thread failure."); - if (pa_card_set_profile(u->card, "off", FALSE) < 0) - pa_log_debug("Failed to switch profile to off"); + pa_assert_se(pa_card_set_profile(u->card, "off", false) >= 0); break; } }