summaryrefslogtreecommitdiff
path: root/src/upb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/upb.h')
-rw-r--r--src/upb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/upb.h b/src/upb.h
index 685a292..a05528b 100644
--- a/src/upb.h
+++ b/src/upb.h
@@ -70,7 +70,7 @@ union upb_value {
bool _bool;
struct upb_string **string;
struct upb_array **array;
- void *message;
+ void *msg;
};
union upb_value_ptr {
@@ -81,9 +81,9 @@ union upb_value_ptr {
uint32_t *uint32;
uint64_t *uint64;
bool *_bool;
- struct upb_string **string;
- struct upb_array **array;
- void **message;
+ struct upb_string **str;
+ struct upb_array **arr;
+ void **msg;
void *_void;
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback