Re: [Qemu-devel] [PATCH] Fix non-portable format string in usb-ccid.c

2011-04-04 Thread Aurelien Jarno
On Mon, Apr 04, 2011 at 02:48:08PM +1000, David Gibson wrote: > At one point, usb-ccid.c attempts to use a %lX format specifier to print > a uint64_t, which is only correct on some host platforms. This patch > corrects the statement to use the stdint specified PRIX64 constant instead. > > Signed-

[Qemu-devel] [PATCH] Fix non-portable format string in usb-ccid.c

2011-04-03 Thread David Gibson
At one point, usb-ccid.c attempts to use a %lX format specifier to print a uint64_t, which is only correct on some host platforms. This patch corrects the statement to use the stdint specified PRIX64 constant instead. Signed-off-by: David Gibson --- hw/usb-ccid.c |2 +- 1 files changed, 1 i