Index: target-mips/cpu.h
===================================================================
RCS file: /cvsroot/qemu/qemu/target-mips/cpu.h,v
retrieving revision 1.20
diff -u -r1.20 cpu.h
--- target-mips/cpu.h	24 Jan 2007 18:01:23 -0000	1.20
+++ target-mips/cpu.h	13 Feb 2007 21:24:28 -0000
@@ -19,7 +19,11 @@
 
 /* target_ulong size spec */
 #ifdef MIPS_HAS_MIPS64
-#define TLSZ "%016llx"
+# ifdef _WIN32
+# define TLSZ "%016I64x"
+# else
+# define TLSZ "%016llx"
+# endif
 #else
 #define TLSZ "%08x"
 #endif