From b40c4f53a71cb35b33ccd1ee8a2798af753eb049 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Fri, 12 Oct 2012 18:52:24 +0530 Subject: [PATCH] bluez: Fix typo in resetting the D-Bus connection No real effect since FALSE and NULL are both 0 --- sys/bluez/gstavdtputil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/bluez/gstavdtputil.c b/sys/bluez/gstavdtputil.c index 2d721cb7a7..74f5ecbff8 100644 --- a/sys/bluez/gstavdtputil.c +++ b/sys/bluez/gstavdtputil.c @@ -140,7 +140,7 @@ gst_avdtp_connection_release (GstAvdtpConnection * conn) dbus_connection_unref (conn->data.conn); - conn->data.conn = FALSE; + conn->data.conn = NULL; } }