summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/support/huffman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/support/huffman.c')
-rw-r--r--src/third_party/wiredtiger/src/support/huffman.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/src/support/huffman.c b/src/third_party/wiredtiger/src/support/huffman.c
index 768024617ae..2bd9b6daea6 100644
--- a/src/third_party/wiredtiger/src/support/huffman.c
+++ b/src/third_party/wiredtiger/src/support/huffman.c
@@ -310,10 +310,9 @@ __wt_huffman_open(
WT_RET(__wt_calloc_one(session, &huffman));
/*
- * The frequency table is 4B pairs of symbol and frequency. The symbol
- * is either 1 or 2 bytes and the frequency ranges from 1 to UINT32_MAX
- * (a frequency of 0 means the value is never expected to appear in the
- * input). Validate the symbols are within range.
+ * The frequency table is 4B pairs of symbol and frequency. The symbol is either 1 or 2 bytes
+ * and the frequency ranges from 1 to UINT32_MAX (a frequency of 0 means the value is never
+ * expected to appear in the input). Validate the symbols are within range.
*/
if (numbytes != 1 && numbytes != 2)
WT_ERR_MSG(session, EINVAL,