zfs-0.7.2/cmd/zed/zed_conf.c:397]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses.
[zfs-0.7.2/cmd/zed/zed_conf.c:403]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses.
Source code is
if ((st.st_mode & S_IWGRP) & !zcp->do_force) {
Maybe better code
if ((st.st_mode & S_IWGRP) && !zcp->do_force) {
SImilar a few lines further down.