aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-11 13:57:21 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-11 13:57:21 -0400
commit273e2f995f1d74e9ef8e9a2e09a3ea2c2b16d839 (patch)
treef82e1af4b53232fc2ddc61d8bbfc0724c012e126 /compile.c
parent75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (diff)
Rename channel_t -> Channel_t for consistency
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 84cb26eb..d3ca0ba6 100644
--- a/compile.c
+++ b/compile.c
@@ -196,7 +196,7 @@ CORD compile_type(type_t *t)
}
case ArrayType: return "Array_t";
case SetType: return "Table_t";
- case ChannelType: return "channel_t*";
+ case ChannelType: return "Channel_t*";
case TableType: return "Table_t";
case FunctionType: {
auto fn = Match(t, FunctionType);