summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-08-04 10:13:19 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-08-04 10:13:19 -0700
commitf03c8bd7dddb17f51e6baeacd68e4c0172411e82 (patch)
treebb6c73f7a927157acdab29c01e1cb976e1a7c6b7 /src
parent7eb16a55503855d65c49b0a7e356a317c1325515 (diff)
Minor bugfix and makefile change.
Diffstat (limited to 'src')
-rw-r--r--src/upb_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upb_parse.c b/src/upb_parse.c
index 1411bbd..4f22e4a 100644
--- a/src/upb_parse.c
+++ b/src/upb_parse.c
@@ -38,7 +38,7 @@ struct upb_type_info upb_type_info[] = {
upb_status_t upb_get_v_uint64_t_full(uint8_t *buf, uint8_t *end, uint64_t *val,
uint8_t **outbuf)
{
- uint8_t *const *maxend = buf + 10;
+ uint8_t *const maxend = buf + 10;
uint8_t last = 0x80;
*val = 0;
int bitpos;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback