diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-12-17 10:30:19 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-12-17 10:30:19 -0500 |
commit | 20c6a1e592b213eef90d951bce9fcf06f43f046e (patch) | |
tree | d7b66250504b3f22fd9ba57f5323b0f1db0f8206 /src/support | |
parent | 6212aea67e1386822483034fe83c0caa0947ba2c (diff) | |
download | mongo-20c6a1e592b213eef90d951bce9fcf06f43f046e.tar.gz |
Remove duplicated comment.
Diffstat (limited to 'src/support')
-rw-r--r-- | src/support/hex.c | 4 |
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 == '\\') |