From: David Gibson Date: Mon, 4 Apr 2011 04:48:08 +0000 (+1000) Subject: Fix non-portable format string in usb-ccid.c X-Git-Tag: v0.15.0-rc0~548 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c53c1258a455cbe9afd7e5c572578646df30d438;p=thirdparty%2Fqemu.git Fix non-portable format string in usb-ccid.c 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 Signed-off-by: Aurelien Jarno --- diff --git a/hw/usb-ccid.c b/hw/usb-ccid.c index 723b2e325f7..44156cc1d8d 100644 --- a/hw/usb-ccid.c +++ b/hw/usb-ccid.c @@ -1199,7 +1199,7 @@ void ccid_card_card_error(CCIDCardState *card, uint64_t error) s->bmCommandStatus = COMMAND_STATUS_FAILED; s->last_answer_error = error; - DPRINTF(s, 1, "VSC_Error: %lX\n", s->last_answer_error); + DPRINTF(s, 1, "VSC_Error: %" PRIX64 "\n", s->last_answer_error); /* TODO: these error's should be more verbose and propogated to the guest.*/ /* * We flush all pending answers on CardRemove message in ccid-card-passthru,