core: macros: fix bad return type on unref() function template

This commit is contained in:
2025-10-18 21:54:34 +01:00
parent 4044961478
commit e1e4544b67

View File

@@ -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); \
}