svn commit: r247581 - projects/calloutng/sys/kern

Andriy Gapon avg at FreeBSD.org
Fri Mar 1 22:22:04 UTC 2013


on 01/03/2013 23:12 Alexander Motin said the following:
> +	direct = !!(c->c_flags & CALLOUT_DIRECT);

Please do not violate boundaries between FreeBSD kernel code and some other OS
kernel code :-)
In FreeBSD the above should look like:

direct = (c->c_flags & CALLOUT_DIRECT) != 0;

-- 
Andriy Gapon


More information about the svn-src-projects mailing list