aboutsummaryrefslogtreecommitdiff
path: root/stdlib/functiontype.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-30 14:39:30 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-30 14:39:30 -0400
commit1a6ce0047bbc5125c386f65ae348688f98a9bb3f (patch)
treeee56e2b3535ddcbc36fab5240d804d95f7744b5f /stdlib/functiontype.c
parent2ba07c2cf53a765d4decb2cb09dbf5e1e99f1966 (diff)
Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code
Diffstat (limited to 'stdlib/functiontype.c')
-rw-r--r--stdlib/functiontype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/functiontype.c b/stdlib/functiontype.c
index 251a01ed..49863d86 100644
--- a/stdlib/functiontype.c
+++ b/stdlib/functiontype.c
@@ -18,7 +18,7 @@ public Text_t *get_function_name(void *fn)
return Table$get(function_names, &fn, Table$info(Function$info("???"), &Text$info));
}
-public Text_t Func$as_text(const void *fn, bool colorize, const TypeInfo *type)
+public Text_t Func$as_text(const void *fn, bool colorize, const TypeInfo_t *type)
{
(void)fn;
Text_t text = Text$from_str(type->FunctionInfo.type_str);