From 971ff709ceb2128f78769221106f6718450ccd0c Mon Sep 17 00:00:00 2001 From: ratchov Date: Mon, 8 Mar 2021 09:35:08 +0000 Subject: [PATCH] sndiod: Style tweak: uniformize pattern to access ctlslot_array --- usr.bin/sndiod/dev.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/usr.bin/sndiod/dev.c b/usr.bin/sndiod/dev.c index 92c9a9254e3..798f1565a0a 100644 --- a/usr.bin/sndiod/dev.c +++ b/usr.bin/sndiod/dev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dev.c,v 1.94 2021/03/03 10:19:06 ratchov Exp $ */ +/* $OpenBSD: dev.c,v 1.95 2021/03/08 09:35:08 ratchov Exp $ */ /* * Copyright (c) 2008-2012 Alexandre Ratchov * @@ -1150,7 +1150,7 @@ dev_abort(struct dev *d) } d->slot_list = NULL; - for (c = ctlslot_array, i = DEV_NCTLSLOT; i > 0; i--, c++) { + for (c = ctlslot_array, i = 0; i < DEV_NCTLSLOT; i++, c++) { if (c->ops == NULL) continue; if (c->opt->dev != d) @@ -2581,8 +2581,10 @@ dev_ctlsync(struct dev *d) NULL, -1, 127, d->master); } - for (s = ctlslot_array, i = DEV_NCTLSLOT; i > 0; i--, s++) { - if (s->ops && s->opt->dev == d) + for (s = ctlslot_array, i = 0; i < DEV_NCTLSLOT; i++, s++) { + if (s->ops == NULL) + continue; + if (s->opt->dev == d) s->ops->sync(s->arg); } } -- 2.20.1