From 857a1f4909f91fbf504ad05aca4b0dcd7945cacf Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 30 Mar 2009 20:57:23 +0200 Subject: fix compiler warning --- src/modules/bluetooth/module-bluetooth-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c index fadfa540..96b95b4f 100644 --- a/src/modules/bluetooth/module-bluetooth-device.c +++ b/src/modules/bluetooth/module-bluetooth-device.c @@ -462,7 +462,7 @@ static int setup_a2dp(struct userdata *u) { } } - pa_assert(i < PA_ELEMENTSOF(freq_table)); + pa_assert((unsigned) i < PA_ELEMENTSOF(freq_table)); if (cap->capability.configured) return 0; -- cgit