summaryrefslogtreecommitdiff
path: root/src/upb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb.c')
-rw-r--r--src/upb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upb.c b/src/upb.c
index e58d272..2412be3 100644
--- a/src/upb.c
+++ b/src/upb.c
@@ -32,8 +32,8 @@ struct upb_type_info upb_type_info[] = {
TYPE_INFO(SFIXED64, UPB_WIRE_TYPE_64BIT, int64_t)
TYPE_INFO(SINT32, UPB_WIRE_TYPE_VARINT, int32_t)
TYPE_INFO(SINT64, UPB_WIRE_TYPE_VARINT, int64_t)
- TYPE_INFO(STRING, UPB_WIRE_TYPE_DELIMITED, struct upb_string*)
- TYPE_INFO(BYTES, UPB_WIRE_TYPE_DELIMITED, struct upb_string*)
+ TYPE_INFO(STRING, UPB_WIRE_TYPE_DELIMITED, union upb_string*)
+ TYPE_INFO(BYTES, UPB_WIRE_TYPE_DELIMITED, union upb_string*)
};
void upb_seterr(struct upb_status *status, enum upb_status_code code,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback