summaryrefslogtreecommitdiff
path: root/src/upb_parse.c
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-12-28 16:41:33 -0800
committerJoshua Haberman <joshua@reverberate.org>2009-12-28 16:41:33 -0800
commite5debfa1c99757ad08bccd834b9596a4f5e97adb (patch)
tree9e47c92b10875f83571475e88efdf9ae4af25e34 /src/upb_parse.c
parent602e093504dc07fec421df636d307654685892cb (diff)
More incremental work; ported some of upbc.
Diffstat (limited to 'src/upb_parse.c')
-rw-r--r--src/upb_parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upb_parse.c b/src/upb_parse.c
index 2948022..b9cad5a 100644
--- a/src/upb_parse.c
+++ b/src/upb_parse.c
@@ -272,8 +272,8 @@ static uint8_t *skip_wire_value(uint8_t *buf, uint8_t *end, upb_wire_type_t wt,
}
}
-uint8_t *upb_parse_value(uint8_t *buf, uint8_t *end, upb_field_type_t ft,
- union upb_value_ptr v, struct upb_status *status)
+static uint8_t *upb_parse_value(uint8_t *buf, uint8_t *end, upb_field_type_t ft,
+ union upb_value_ptr v, struct upb_status *status)
{
#define CASE(t, member_name) \
case UPB_TYPE(t): return upb_get_ ## t(buf, end, v.member_name, status);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback