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 ull? Robin -- Robin Sommer * Phone +1 (510) 722-6541 * [email protected] ICSI/LBNL * Fax +1 (510) 666-2956 * www.icir.org _______________________________________________ bro-dev mailing list [email protected] http://mailman.icsi.berkeley.edu/mailman/listinfo/bro-dev
