From 7c4cff24f201ad92eae61282f4e0c839480d4966 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sun, 8 Feb 2026 12:52:14 +0000 Subject: [PATCH] test: update object api usage --- test/obj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/obj.c b/test/obj.c index 1e6bb34..420d8a5 100644 --- a/test/obj.c +++ b/test/obj.c @@ -53,7 +53,7 @@ static void print_object_tree(struct object *obj, int depth) } print_object_tree(child, depth + 1); - object_deref(child); + object_unref(child); i++; } }