On 10/05/11 10:48, I wrote:
Does this look right?

! ts = ((long)u - v < 0) ? 0 : (u - v); \

Doh! It should probably be ..

ts = ((long)(u - v) < 0) ? 0 : (u - v);
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to