On 02/06/16 08:50, Nick Hudson wrote:
Module Name: src Committed By: skrll Date: Sat Feb 6 08:50:52 UTC 2016 Modified Files: src/sys/dev/usb [nick-nhusb]: xhci.c Log Message: Use if (expr) { ... } instead of a if (expr) goto label; ... ; label:
Log message now reads... Use if (!expr) { ... } instead of a if (expr) goto label; ... ; label: Nick