aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2020-08-05 17:26:20 +0000
committerMark Johnston <markj@FreeBSD.org>2020-08-05 17:26:20 +0000
commit36cc9d5ca5041c1d0748c04bff0c71597827ec66 (patch)
treef79d1b90e2c19b04a9a6a15a7814e04f2c59ea5f
parent1b1428dcc82b54b7a2c332680d2f66945bf9899b (diff)
downloadsrc-36cc9d5ca5041c1d0748c04bff0c71597827ec66.tar.gz
src-36cc9d5ca5041c1d0748c04bff0c71597827ec66.zip
Fix the smrstress build after r358400.
Reported by: pho
Notes
Notes: svn path=/head/; revision=363925
-rw-r--r--tools/uma/smrstress/smrstress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/uma/smrstress/smrstress.c b/tools/uma/smrstress/smrstress.c
index 0e4dcfeddf47..7e7ee4ea065c 100644
--- a/tools/uma/smrstress/smrstress.c
+++ b/tools/uma/smrstress/smrstress.c
@@ -68,7 +68,7 @@ smrs_error(struct smrs *smrs, const char *fmt, ...)
atomic_add_int(&smrs_failures, 1);
printf("SMR ERROR: wr_seq %d, rd_seq %d, c_seq %d, generation %d, count %d ",
- smrs_smr->c_shared->s_wr_seq, smrs_smr->c_shared->s_rd_seq,
+ smrs_smr->c_shared->s_wr.seq, smrs_smr->c_shared->s_rd_seq,
zpcpu_get(smrs_smr)->c_seq, smrs->generation, smrs->count);
va_start(ap, fmt);
(void)vprintf(fmt, ap);