aboutsummaryrefslogtreecommitdiff
path: root/stdlib/shell.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/shell.c
parent2ba07c2cf53a765d4decb2cb09dbf5e1e99f1966 (diff)
Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code
Diffstat (limited to 'stdlib/shell.c')
-rw-r--r--stdlib/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/shell.c b/stdlib/shell.c
index 28c85fb1..d2d0f78a 100644
--- a/stdlib/shell.c
+++ b/stdlib/shell.c
@@ -135,7 +135,7 @@ public OptionalClosure_t Shell$by_line(Shell_t command)
return (Closure_t){.fn=(void*)_next_line, .userdata=wrapper};
}
-public const TypeInfo Shell$info = {
+public const TypeInfo_t Shell$info = {
.size=sizeof(Shell_t),
.align=__alignof__(Shell_t),
.tag=TextInfo,