On Tuesday 13 February 2007 4:44 pm, Hervé Poussineau wrote:
> Hi,
> 
> Correct number formatting on Windows for 64 bit numbers is "I64", while it
> is "ll" on *nix.

Might I introduce you to the c99 PRIu64 macro (and friends)?

  uint64_t bytes=1234;
  printf("%"PRIu64" bytes\n", bytes);

Rob
-- 
"Perfection is reached, not when there is no longer anything to add, but
when there is no longer anything to take away." - Antoine de Saint-Exupery


_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to