diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529> | 2011-04-20 22:48:11 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529> | 2011-04-20 22:48:11 +0000 |
commit | ba6dac0e809b249532a7465f71a00ccda307161d (patch) | |
tree | 9aa494c1bb1bbbefba5bf12c520941dbe4abfec1 /util/coding.cc | |
parent | 69c6d38342a1fab5f7f2921aa2e9c0e60ba90e35 (diff) | |
download | leveldb-ba6dac0e809b249532a7465f71a00ccda307161d.tar.gz |
@20776309
* env_chromium.cc should not export symbols.
* Fix MSVC warnings.
* Removed large value support.
* Fix broken reference to documentation file
git-svn-id: https://leveldb.googlecode.com/svn/trunk@24 62dab493-f737-651d-591e-8d6aee1b9529
Diffstat (limited to 'util/coding.cc')
-rw-r--r-- | util/coding.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/coding.cc b/util/coding.cc index 680e2ad..14f21f7 100644 --- a/util/coding.cc +++ b/util/coding.cc @@ -85,7 +85,7 @@ char* EncodeVarint64(char* dst, uint64_t v) { *(ptr++) = (v & (B-1)) | B; v >>= 7; } - *(ptr++) = v; + *(ptr++) = static_cast<unsigned char>(v); return reinterpret_cast<char*>(ptr); } |