summaryrefslogtreecommitdiff
path: root/src/support
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-12-17 10:30:19 -0500
committerKeith Bostic <keith@wiredtiger.com>2015-12-17 10:30:19 -0500
commit20c6a1e592b213eef90d951bce9fcf06f43f046e (patch)
treed7b66250504b3f22fd9ba57f5323b0f1db0f8206 /src/support
parent6212aea67e1386822483034fe83c0caa0947ba2c (diff)
downloadmongo-20c6a1e592b213eef90d951bce9fcf06f43f046e.tar.gz
Remove duplicated comment.
Diffstat (limited to 'src/support')
-rw-r--r--src/support/hex.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/support/hex.c b/src/support/hex.c
index 5fb8d4bc190..bba949b3df7 100644
--- a/src/support/hex.c
+++ b/src/support/hex.c
@@ -83,10 +83,6 @@ __wt_raw_to_esc_hex(
*/
WT_RET(__wt_buf_init(session, to, size * 3 + 1));
- /*
- * In the worst case, every character takes up 3 spaces, plus a
- * trailing nul byte.
- */
for (p = from, t = to->mem, i = size; i > 0; --i, ++p)
if (isprint((int)*p)) {
if (*p == '\\')