summaryrefslogtreecommitdiff
path: root/src/third_party/snappy-1.1.7
diff options
context:
space:
mode:
authorIan Boros <ian.boros@10gen.com>2019-01-10 09:42:21 -0500
committerIan Boros <ian.boros@10gen.com>2019-01-10 09:42:21 -0500
commit005c5d104d50c451061ddbf159a7df3498caf3ef (patch)
tree665effe5c9e983f9a6035750c0e839e6359be8b7 /src/third_party/snappy-1.1.7
parent6e77cc6573fb8f107a37d067044ebc52ca1cdcfd (diff)
downloadmongo-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/third_party/snappy-1.1.7')
-rw-r--r--src/third_party/snappy-1.1.7/snappy-internal.h2
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