diff dmd/init.c @ 1133:eeb8b95ea92e

Cleanup DMD 1.041 merge.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Mon, 23 Mar 2009 20:26:33 +0100
parents aaade6ded589
children 8026319762be
line wrap: on
line diff
--- a/dmd/init.c	Mon Mar 23 14:47:51 2009 +0100
+++ b/dmd/init.c	Mon Mar 23 20:26:33 2009 +0100
@@ -384,7 +384,7 @@
     }
     unsigned long amax = 0x80000000;
     if ((unsigned long) dim * t->next->size() >= amax)
-	error(loc, "array dimension %u exceeds max of %llu", dim, amax / t->next->size());
+	error(loc, "array dimension %u exceeds max of %ju", dim, amax / t->next->size());
     return this;
 }