From 04c8fb0362dc4f922c1e96ca01fb87a3e8e74214 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 5 Sep 2024 15:31:54 -0400 Subject: Replace $Type with Type$info for builtin TypeInfos --- builtins/pointer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtins/pointer.c') diff --git a/builtins/pointer.c b/builtins/pointer.c index 5090edd9..bd18a1e4 100644 --- a/builtins/pointer.c +++ b/builtins/pointer.c @@ -54,7 +54,7 @@ public Text_t Pointer$as_text(const void *x, bool colorize, const TypeInfo *type colorize ? Text("\x1b[34;1m") : Text(""), Text$from_str(ptr_info.sigil), Text(".."), - Int32$as_text(&depth, false, &$Int32), + Int32$as_text(&depth, false, &Int32$info), colorize ? Text("\x1b[m") : Text("")); if (ptr_info.is_optional) text = Text$concat(text, colorize ? Text("\x1b[34;1m?\x1b[m") : Text("?")); -- cgit v1.2.3