diff options
author | Ian Boros <ian.boros@10gen.com> | 2019-01-10 09:42:21 -0500 |
---|---|---|
committer | Ian Boros <ian.boros@10gen.com> | 2019-01-10 09:42:21 -0500 |
commit | 005c5d104d50c451061ddbf159a7df3498caf3ef (patch) | |
tree | 665effe5c9e983f9a6035750c0e839e6359be8b7 /src | |
parent | 6e77cc6573fb8f107a37d067044ebc52ca1cdcfd (diff) | |
download | mongo-005c5d104d50c451061ddbf159a7df3498caf3ef.tar.gz |
Revert "SERVER-28073 [Snappy-1.1.2 Patch]: fix Windows build for ssize_t"
This reverts commit 524cc45b29e023c9004f51f8a90c5bb7b0d7c169.
Diffstat (limited to 'src')
-rw-r--r-- | src/third_party/snappy-1.1.7/snappy-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/snappy-1.1.7/snappy-internal.h b/src/third_party/snappy-1.1.7/snappy-internal.h index a283544dc19..4b53d596f49 100644 --- a/src/third_party/snappy-1.1.7/snappy-internal.h +++ b/src/third_party/snappy-1.1.7/snappy-internal.h @@ -47,7 +47,7 @@ class WorkingMemory { uint16* GetHashTable(size_t input_size, int* table_size); private: - uint16 small_table_[1<<14]; // 32KB + uint16 small_table_[1<<10]; // 2KB uint16* large_table_; // Allocated only when needed // No copying |