Closed GoogleCodeExporter closed 8 years ago
That's a compiler warning, not a build failure?
Original comment by lcam...@gmail.com
on 22 May 2010 at 9:06
in stdint.h:
# if __WORDSIZE == 64
typedef long int int64_t;
# else
__extension__
typedef long long int int64_t;
# endif
so, in analysis.c:1372, format '%02llu' should be replace with '%02lu'.
Original comment by bsn0w...@gmail.com
on 21 Jun 2010 at 1:30
The other way to fix (instead of changing the format) is just to add a cast.
Original comment by n3npq....@gmail.com
on 5 Jul 2010 at 4:34
The warnings will be fixed in the next release. I can't see the build failing,
though.
Original comment by lcam...@gmail.com
on 5 Jul 2010 at 9:07
Original issue reported on code.google.com by
sirhelmc...@gmail.com
on 22 May 2010 at 7:47