diff options
author | phk <phk@FreeBSD.org> | 1999-09-19 08:28:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-09-19 08:28:49 +0000 |
commit | d6309706d9bf4b5e32e54fd49bbfc9c309ea39f4 (patch) | |
tree | 6e9f7ff67e2c867fba1cb6dde7cca8f609e80a0d /sys/kern | |
parent | 73f3f4d4118e08463f3808fa704e6a3b5d69deb4 (diff) | |
download | FreeBSD-src-d6309706d9bf4b5e32e54fd49bbfc9c309ea39f4.zip FreeBSD-src-d6309706d9bf4b5e32e54fd49bbfc9c309ea39f4.tar.gz |
Move an end-paren to its intended place.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_devstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_devstat.c b/sys/kern/subr_devstat.c index 699ec3e..e71eef4 100644 --- a/sys/kern/subr_devstat.c +++ b/sys/kern/subr_devstat.c @@ -222,7 +222,7 @@ devstat_end_transaction(struct devstat *ds, u_int32_t bytes, /* * Keep a count of the various tag types sent. */ - if ((ds->flags & DEVSTAT_NO_ORDERED_TAGS == 0) && + if ((ds->flags & DEVSTAT_NO_ORDERED_TAGS) == 0 && tag_type != DEVSTAT_TAG_NONE) ds->tag_types[tag_type]++; |