Elliott Hughes ba76572789 Fix log_backtrace assertion failure caused by LP64 fix.
When libc.debug.malloc is enabled, stack backtraces fail with:

bionic/libc/bionic/libc_logging.cpp:378: assertion "conversion
    specifier unsupported" failed

The cause was a change to the format specifier from "%08x" to
"%0*x" to pass the field width as an additional parameter.
Unfortunately this modifier isn't supported by out_vformat() in
libc_logging.cpp.

Changed to use "%016x" if __LP64__ is defined; "%08x" otherwise.

Bug: 13177507
Change-Id: Ibf07263acf14da086d3c3788872f4b5477bd5708
2014-02-25 15:32:01 -08:00
..
2014-02-11 22:16:04 -08:00
2014-02-20 13:51:26 -08:00
2014-02-21 14:30:18 -08:00
2013-12-20 11:26:19 -08:00
2014-02-25 15:19:26 -08:00
2014-01-07 13:46:11 -08:00