On Aug 28, 2012, at 1:26 PM, Robin Sommer <[email protected]> wrote: > > On Tue, Aug 28, 2012 at 00:50 -0700, Bernhard Amann wrote: > >> on 32-bit machines only unsigned long longs are 64-bits long. Not just >> unsigned longs... > >> - unsigned long uvalue = (value < 0) ? -value : value; >> + unsigned long long uvalue = (value < 0) ? -value : value; > > Should this use uint64_t instead of ill?
>From my understanding, it does not really matter; at least at the moment that >is equivalent. But it probably also should not hurt defining it as a uint64_t… and makes it better understandable. Bernhard _______________________________________________ bro-dev mailing list [email protected] http://mailman.icsi.berkeley.edu/mailman/listinfo/bro-dev
