From 07f24f9b7022086187f60f52e786d0dbdbd3b7f1 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Thu, 16 Aug 2012 11:29:08 -0700 Subject: [PATCH] Fix casting issues --- pb_decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pb_decode.c b/pb_decode.c index 5ef40ecc..48068325 100644 --- a/pb_decode.c +++ b/pb_decode.c @@ -121,7 +121,7 @@ bool checkreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, { uint32_t temp; *eof = false; - *wire_type = 0; + *wire_type = (pb_wire_type_t) 0; *tag = 0; if (!pb_decode_varint32(stream, &temp)) @@ -393,7 +393,7 @@ static void pb_message_set_to_defaults(const pb_field_t fields[], void *dest_str } else if (PB_LTYPE(iter.current->type) == PB_LTYPE_SUBMESSAGE) { - pb_message_set_to_defaults(iter.current->ptr, iter.pData); + pb_message_set_to_defaults((const pb_field_t *) iter.current->ptr, iter.pData); } else if (iter.current->ptr != NULL) { -- 2.16.6