diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2012-07-18 21:21:07 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2012-07-18 21:21:07 +0300 |
commit | 8524de39ce2e4c369ed1051c7ed2e4cd43ad321d (patch) | |
tree | 7939acf5b30d146d39555e0633376c1d98f93d6c /pb_decode.c | |
parent | 10b5da12dc9757b345a9d6f9daeef9098731ff69 (diff) |
Fix an unsigned vs. signed warning on some compiler.
Diffstat (limited to 'pb_decode.c')
-rw-r--r-- | pb_decode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pb_decode.c b/pb_decode.c index e183be7d..cada00c5 100644 --- a/pb_decode.c +++ b/pb_decode.c @@ -117,7 +117,7 @@ bool checkreturn pb_skip_string(pb_istream_t *stream) return pb_read(stream, NULL, length); } -bool checkreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, int *tag, bool *eof) +bool checkreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof) { uint32_t temp; *eof = false; @@ -418,7 +418,7 @@ bool checkreturn pb_decode(pb_istream_t *stream, const pb_field_t fields[], void while (stream->bytes_left) { - int tag; + uint32_t tag; pb_wire_type_t wire_type; bool eof; |