From d25b88925aed016a9dc59384b4bd476f05b25e14 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 3 Jan 2026 22:54:25 +0100 Subject: [PATCH] support: return NULL instead of FALSE --- spa/plugins/support/dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/support/dbus.c b/spa/plugins/support/dbus.c index b385c5aef..22399ec9a 100644 --- a/spa/plugins/support/dbus.c +++ b/spa/plugins/support/dbus.c @@ -445,7 +445,7 @@ impl_get_connection(void *object, conn = calloc(1, sizeof(struct connection)); if (conn == NULL) - return FALSE; + return NULL; conn->this = impl_connection; conn->impl = impl; conn->type = type;