diff options
author | peter <peter@FreeBSD.org> | 1999-05-06 18:13:11 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-05-06 18:13:11 +0000 |
commit | 73556bfee1b1d6dfc2a2f5d400228ca90bb34fc9 (patch) | |
tree | cd23f4c8f0d180abffffaece640b7971fd1103e2 /sys/dev/pdq | |
parent | ff951279f971ed62682d7071d202a8e45e6e32a4 (diff) | |
download | FreeBSD-src-73556bfee1b1d6dfc2a2f5d400228ca90bb34fc9.zip FreeBSD-src-73556bfee1b1d6dfc2a2f5d400228ca90bb34fc9.tar.gz |
Add sufficient braces to keep egcs happy about potentially ambiguous
if/else nesting.
Diffstat (limited to 'sys/dev/pdq')
-rw-r--r-- | sys/dev/pdq/pdq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pdq/pdq.c b/sys/dev/pdq/pdq.c index 1a8fcae..cb0e531 100644 --- a/sys/dev/pdq/pdq.c +++ b/sys/dev/pdq/pdq.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pdq.c,v 1.2 1997/01/17 23:54:31 joerg Exp $ + * $Id: pdq.c,v 1.3 1999/01/27 19:35:33 dillon Exp $ * */ @@ -752,8 +752,9 @@ pdq_process_received_data( status.rxs_rcc_reason, status.rxs_fsc, status.rxs_fsb_e)); if (status.rxs_rcc_reason == 7) goto discard_frame; - if (status.rxs_rcc_reason != 0) + if (status.rxs_rcc_reason != 0) { /* hardware fault */ + } if (status.rxs_rcc_badcrc) { printf(PDQ_OS_PREFIX " MAC CRC error (source=%x-%x-%x-%x-%x-%x)\n", PDQ_OS_PREFIX_ARGS, |