Re: [Wireshark-dev] Should existing use of 'LL' and 'ULL' when specifying a constant be fixed ?

2013-12-18 Thread Pascal Quantin
2013/12/17 Bill Meier wme...@newsguy.com README.developer says: When specifying an integral constant that doesn't fit in 32 bits, don't use LL at the end of the constant - not all compilers use LL for that. Instead, put the constant in a call to the G_GINT64_CONSTANT() macro, e.g.

[Wireshark-dev] Should existing use of 'LL' and 'ULL' when specifying a constant be fixed ?

2013-12-17 Thread Bill Meier
README.developer says: When specifying an integral constant that doesn't fit in 32 bits, don't use LL at the end of the constant - not all compilers use LL for that. Instead, put the constant in a call to the G_GINT64_CONSTANT() macro, e.g. G_GINT64_CONSTANT(11644473600U) rather than