aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/masm/wtf/PrintStream.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/3rdparty/masm/wtf/PrintStream.cpp b/src/3rdparty/masm/wtf/PrintStream.cpp
index 3bf362e281..02dfb11b4f 100644
--- a/src/3rdparty/masm/wtf/PrintStream.cpp
+++ b/src/3rdparty/masm/wtf/PrintStream.cpp
@@ -82,12 +82,20 @@ void printInternal(PrintStream& out, unsigned long value)
void printInternal(PrintStream& out, long long value)
{
+#if OS(WINDOWS)
+ out.printf("%I64d", value);
+#else
out.printf("%lld", value);
+#endif
}
void printInternal(PrintStream& out, unsigned long long value)
{
+#if OS(WINDOWS)
+ out.printf("%I64u", value);
+#else
out.printf("%llu", value);
+#endif
}
void printInternal(PrintStream& out, float value)