Fix signedness warning in example_unions.

This commit is contained in:
Petteri Aimonen
2012-08-04 14:34:19 +03:00
parent b582bc9bf6
commit 1aa61f108a

View File

@@ -17,7 +17,7 @@
const pb_field_t* decode_unionmessage_type(pb_istream_t *stream)
{
pb_wire_type_t wire_type;
int tag;
uint32_t tag;
bool eof;
while (pb_decode_tag(stream, &wire_type, &tag, &eof))