| ... | @@ -5116,7 +5116,7 @@ static void get_c_type(CodeGen *g, TypeTableEntry *type_entry, Buf *out_buf) { | ... | @@ -5116,7 +5116,7 @@ static void get_c_type(CodeGen *g, TypeTableEntry *type_entry, Buf *out_buf) { |
| 5116 | | 5116 | |
| 5117 | const char *const_str = type_entry->data.pointer.is_const ? "const " : ""; | 5117 | const char *const_str = type_entry->data.pointer.is_const ? "const " : ""; |
| 5118 | buf_resize(out_buf, 0); | 5118 | buf_resize(out_buf, 0); |
| 5119 | buf_appendf(out_buf, "%s*%s", const_str, buf_ptr(&child_buf)); | 5119 | buf_appendf(out_buf, "%s%s *", const_str, buf_ptr(&child_buf)); |
| 5120 | break; | 5120 | break; |
| 5121 | } | 5121 | } |
| 5122 | case TypeTableEntryIdArray: | 5122 | case TypeTableEntryIdArray: |