From 2a2a83b712cdf77727c70bfc973a73a23435b69d Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Mon, 3 Jan 2022 16:24:11 +1100 Subject: [PATCH] base: fix string description of array-object type --- lib/base/array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/array.c b/lib/base/array.c index b34f9de48..1d18a7cc6 100644 --- a/lib/base/array.c +++ b/lib/base/array.c @@ -58,7 +58,7 @@ array_dealloc(heim_object_t ptr) struct heim_type_data array_object = { HEIM_TID_ARRAY, - "dict-object", + "array-object", NULL, array_dealloc, NULL,