summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2019-02-05 19:42:31 +0000
committerchristos <christos@NetBSD.org>2019-02-05 19:42:31 +0000
commit13414d0e0f919bd182fd089f975630b5ef82cf36 (patch)
treeebcba355c388f7fdf326f95d8fad2fee9731b332 /sys/dev/raidframe
parentd8a4a3586ef1b5ea85395db9bfff7fda02836c21 (diff)
use -> instead of .
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_compat80.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/raidframe/rf_compat80.c b/sys/dev/raidframe/rf_compat80.c
index 16d93a106f7..7f1dbc9e613 100644
--- a/sys/dev/raidframe/rf_compat80.c
+++ b/sys/dev/raidframe/rf_compat80.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_compat80.c,v 1.9 2019/02/05 17:13:37 christos Exp $ */
+/* $NetBSD: rf_compat80.c,v 1.10 2019/02/05 19:42:31 christos Exp $ */
/*
* Copyright (c) 2017 Matthew R. Green
@@ -226,8 +226,8 @@ static int
rf_fail_disk80(RF_Raid_t *raidPtr, struct rf_recon_req80 *req80)
{
struct rf_recon_req req = {
- .col = req80.col,
- .flags = req80.flags,
+ .col = req80->col,
+ .flags = req80->flags,
};
return rf_fail_disk(raidPtr, &req);
}