summaryrefslogtreecommitdiff
path: root/src/upb.c
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2010-01-16 09:00:59 -0800
committerJoshua Haberman <joshua@reverberate.org>2010-01-16 09:00:59 -0800
commit611afe9c6928ea814abd37c4b3cc2869a6ed5efd (patch)
tree9b57805cb619014a411d0504a57e2dd5d1e0c9de /src/upb.c
parentd5566c6038845e505f7c16130b2368ef9bb3a373 (diff)
Removed union tag from types.
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 4cd4bba..146a9a5 100644
--- a/src/upb.c
+++ b/src/upb.c
@@ -32,8 +32,8 @@ upb_type_info upb_types[] = {
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, union upb_string*)
- TYPE_INFO(BYTES, UPB_WIRE_TYPE_DELIMITED, union upb_string*)
+ TYPE_INFO(STRING, UPB_WIRE_TYPE_DELIMITED, upb_strptr)
+ TYPE_INFO(BYTES, UPB_WIRE_TYPE_DELIMITED, upb_strptr)
};
void upb_seterr(upb_status *status, enum upb_status_code code,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback