diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-05-17 12:11:49 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-05-17 12:11:49 +0300 |
commit | 2037874aa0fb0efca88322b14290deab89fccbd4 (patch) | |
tree | 8a9d856da3ea564b9e06914a56f7f4dacb0e75f7 /contrib/libs/snappy/snappy-stubs-internal.cc | |
parent | 7c645e66a7bdae9d6c54d50bf87259c4ffc33e5b (diff) | |
download | ydb-2037874aa0fb0efca88322b14290deab89fccbd4.tar.gz |
Update contrib/libs/snappy to 1.1.9
ref:8e094c2e0f44b866d354257c6a902b6d4394b8f0
Diffstat (limited to 'contrib/libs/snappy/snappy-stubs-internal.cc')
-rw-r--r-- | contrib/libs/snappy/snappy-stubs-internal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/snappy/snappy-stubs-internal.cc b/contrib/libs/snappy/snappy-stubs-internal.cc index 66ed2e9039..0bc8c2d344 100644 --- a/contrib/libs/snappy/snappy-stubs-internal.cc +++ b/contrib/libs/snappy/snappy-stubs-internal.cc @@ -33,7 +33,7 @@ namespace snappy { -void Varint::Append32(std::string* s, uint32 value) { +void Varint::Append32(std::string* s, uint32_t value) { char buf[Varint::kMax32]; const char* p = Varint::Encode32(buf, value); s->append(buf, p - buf); |