diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-12-10 07:11:00 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-12-10 07:11:00 -0500 |
commit | af019ab3dec1a90106fc56778b79e9aaf13b0081 (patch) | |
tree | ab8c2131ccb4e554762870b7d43db7f53b798843 /dist | |
parent | b8a73f73902bad043df1216d541d836eed97e7be (diff) | |
download | mongo-af019ab3dec1a90106fc56778b79e9aaf13b0081.tar.gz |
KNF: void cast of void expression.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/log.py | 3 |
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); } ''') |