Skip to content

Commit

Permalink
Use size_t properly to reduce complier warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyolee committed Jul 1, 2017
1 parent f01bf6e commit c94ccb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snappy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ static bool InternalUncompress(Source* r, Writer* writer) {
template <typename Writer>
static bool InternalUncompressAllTags(SnappyDecompressor* decompressor,
Writer* writer,
uint32 compressed_len,
size_t compressed_len,
uint32 uncompressed_len) {
Report("snappy_uncompress", compressed_len, uncompressed_len);

Expand Down

0 comments on commit c94ccb5

Please sign in to comment.