Issue #2991 has been reported by dcb.
----------------------------------------
Bug #2991: sys/dev/netif/age/if_age.c:628]: (style) Suspicious condition
http://bugs.dragonflybsd.org/issues/2991
* Author: dcb
* Status: New
* Priority: Normal
* Assignee:
* Category:
* Target version:
----------------------------------------
sys/dev/netif/age/if_age.c:628]: (style) Suspicious condition (assignment +
comparison); Clarify expression with parentheses.
Source code is
if ((error = age_dma_alloc(sc) != 0))
goto fail;
Maybe better code
if ((error = age_dma_alloc(sc)) != 0)
goto fail;
--
You have received this notification because you have either subscribed to it,
or are involved in it.
To change your notification preferences, please click here:
http://bugs.dragonflybsd.org/my/account