From e1e4544b67d67ef3eff24914788ef35a4bb04058 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 18 Oct 2025 21:54:34 +0100 Subject: [PATCH] core: macros: fix bad return type on unref() function template --- core/include/blue/core/macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/blue/core/macros.h b/core/include/blue/core/macros.h index d9c26ca..7932822 100644 --- a/core/include/blue/core/macros.h +++ b/core/include/blue/core/macros.h @@ -93,7 +93,7 @@ { \ return b_object_ref(p); \ } \ - static inline name *name##_unref(name *p) \ + static inline void name##_unref(name *p) \ { \ b_object_unref(p); \ }