summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/cursor_order
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/cursor_order')
-rw-r--r--src/third_party/wiredtiger/test/cursor_order/cursor_order.c1
-rw-r--r--src/third_party/wiredtiger/test/cursor_order/cursor_order_ops.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/cursor_order/cursor_order.c b/src/third_party/wiredtiger/test/cursor_order/cursor_order.c
index b2e847f880c..2cdbe4cb840 100644
--- a/src/third_party/wiredtiger/test/cursor_order/cursor_order.c
+++ b/src/third_party/wiredtiger/test/cursor_order/cursor_order.c
@@ -132,7 +132,6 @@ main(int argc, char *argv[])
}
argc -= __wt_optind;
- argv += __wt_optind;
if (argc != 0)
return (usage());
diff --git a/src/third_party/wiredtiger/test/cursor_order/cursor_order_ops.c b/src/third_party/wiredtiger/test/cursor_order/cursor_order_ops.c
index 2ff4b5ed5fb..d110d513bfb 100644
--- a/src/third_party/wiredtiger/test/cursor_order/cursor_order_ops.c
+++ b/src/third_party/wiredtiger/test/cursor_order/cursor_order_ops.c
@@ -120,7 +120,7 @@ ops_start(SHARED_CONFIG *cfg)
/* Wait for the threads. */
for (i = 0; i < cfg->reverse_scanners + cfg->append_inserters; ++i)
- testutil_check(__wt_thread_join(NULL, tids[i]));
+ testutil_check(__wt_thread_join(NULL, &tids[i]));
(void)gettimeofday(&stop, NULL);
seconds = (stop.tv_sec - start.tv_sec) +