summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-12-06 19:02:37 -0500
committerKeith Bostic <keith@wiredtiger.com>2013-12-06 19:02:37 -0500
commit2c744f28427dbaec3c871001fd34b23778cd0970 (patch)
treef9d482249a5a3321e163a9a79936dad3f1f6d5d8
parent0b4e171313ec1fa5649c3f0e5b8530009d9e1e2b (diff)
downloadmongo-2c744f28427dbaec3c871001fd34b23778cd0970.tar.gz
Replace an explicit (void)arg with WT_UNUSED.
-rw-r--r--test/format/compact.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/format/compact.c b/test/format/compact.c
index 227cf478640..b3e5100d29c 100644
--- a/test/format/compact.c
+++ b/test/format/compact.c
@@ -39,7 +39,7 @@ compact(void *arg)
u_int period;
int ret;
- (void)arg;
+ WT_UNUSED(arg);
/* Compaction isn't supported for all data sources. */
if (DATASOURCE("kvsbdb") || DATASOURCE("memrata"))