On Sat, Jan 05, 2008 at 05:14:21PM +0000, Paul Kelly wrote: > * Change the if condition (a+1)>b to a>=b as it's faster I think? They're not equivalent BTW, but I doubt it matters here: a=UINT_MAX; b=1; (a+1)>b is false a>=b is true Rich