diff dmd/dump.c @ 794:661384d6a936

Fix warnings on x86-64. By fvbommel.
author Christian Kamm <kamm incasoftware de>
date Fri, 28 Nov 2008 21:24:08 +0100
parents 2b72433d5c8c
children eeb8b95ea92e
line wrap: on
line diff
--- a/dmd/dump.c	Thu Nov 27 18:31:09 2008 +0100
+++ b/dmd/dump.c	Fri Nov 28 21:24:08 2008 +0100
@@ -52,7 +52,7 @@
 void IntegerExp::dump(int i)
 {
     indent(i);
-    printf("%p %lld type=%s\n", this, (intmax_t)value, type_print(type));
+    printf("%p %lld type=%s\n", this, (long long)value, type_print(type));
 }
 
 void IdentifierExp::dump(int i)