Module Name: src Committed By: christos Date: Tue Feb 5 19:42:31 UTC 2019
Modified Files: src/sys/dev/raidframe: rf_compat80.c Log Message: use -> instead of . To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/raidframe/rf_compat80.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/raidframe/rf_compat80.c diff -u src/sys/dev/raidframe/rf_compat80.c:1.9 src/sys/dev/raidframe/rf_compat80.c:1.10 --- src/sys/dev/raidframe/rf_compat80.c:1.9 Tue Feb 5 12:13:37 2019 +++ src/sys/dev/raidframe/rf_compat80.c Tue Feb 5 14:42:31 2019 @@ -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); }