Mercurial > hg > xemacs-beta
diff src/emacs.c @ 5934:e2fae7783046 cygwin
lots of use of EMACS_INT, a few others, to eliminate all pointer truncation warnings
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sat, 12 Dec 2015 19:08:46 +0000 |
parents | 4d7032d36975 |
children |
line wrap: on
line diff
--- a/src/emacs.c Thu Dec 10 17:55:59 2015 +0000 +++ b/src/emacs.c Sat Dec 12 19:08:46 2015 +0000 @@ -4117,7 +4117,7 @@ { Ascbyte bigstr[1000]; /* #### Could overflow, but avoids any need to do any allocation, even alloca(), hence safer */ - sprintf (bigstr, "%s (%ld) should == %s (%ld) but doesn't", + sprintf (bigstr, "%s (%Id) should == %s (%Id) but doesn't", exprx, x, expry, y); assert_failed (file, line, bigstr); }