diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:57:21 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-11 13:57:21 -0400 |
| commit | 273e2f995f1d74e9ef8e9a2e09a3ea2c2b16d839 (patch) | |
| tree | f82e1af4b53232fc2ddc61d8bbfc0724c012e126 /builtins/types.h | |
| parent | 75fbaa79bc88abe8868cb4508e9ab9390cb7b329 (diff) | |
Rename channel_t -> Channel_t for consistency
Diffstat (limited to 'builtins/types.h')
| -rw-r--r-- | builtins/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/types.h b/builtins/types.h index a7b4bb51..a0b48e53 100644 --- a/builtins/types.h +++ b/builtins/types.h @@ -63,7 +63,7 @@ typedef struct TypeInfo { .tag=ArrayInfo, .ArrayInfo.item=item_info}) #define Set$info(item_info) &((TypeInfo){.size=sizeof(Table_t), .align=__alignof__(Table_t), \ .tag=TableInfo, .TableInfo.key=item_info, .TableInfo.value=&Void$info}) -#define Channel$info(item_info) &((TypeInfo){.size=sizeof(channel_t), .align=__alignof__(channel_t), \ +#define Channel$info(item_info) &((TypeInfo){.size=sizeof(Channel_t), .align=__alignof__(Channel_t), \ .tag=ChannelInfo, .ChannelInfo.item=item_info}) #define Table$info(key_expr, value_expr) &((TypeInfo){.size=sizeof(Table_t), .align=__alignof__(Table_t), \ .tag=TableInfo, .TableInfo.key=key_expr, .TableInfo.value=value_expr}) |
