summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-12-10 07:11:00 -0500
committerKeith Bostic <keith@wiredtiger.com>2015-12-10 07:11:00 -0500
commitaf019ab3dec1a90106fc56778b79e9aaf13b0081 (patch)
treeab8c2131ccb4e554762870b7d43db7f53b798843 /dist
parentb8a73f73902bad043df1216d541d836eed97e7be (diff)
downloadmongo-af019ab3dec1a90106fc56778b79e9aaf13b0081.tar.gz
KNF: void cast of void expression.
Diffstat (limited to 'dist')
-rw-r--r--dist/log.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/dist/log.py b/dist/log.py
index d1595590634..6d35bf2e718 100644
--- a/dist/log.py
+++ b/dist/log.py
@@ -220,8 +220,7 @@ __logrec_make_hex_str(WT_SESSION_IMPL *session, char **destp, WT_ITEM *item)
\tneeded = item->size * 2 + 1;
\tWT_RET(__wt_realloc(session, NULL, needed, destp));
-\t(void)(__wt_fill_hex(
-\t item->data, item->size, (uint8_t *)*destp, needed, NULL));
+\t__wt_fill_hex(item->data, item->size, (uint8_t *)*destp, needed, NULL);
\treturn (0);
}
''')