diff src/extents.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 56144c8593a8
children
line wrap: on
line diff
--- a/src/extents.c	Thu Dec 10 17:55:59 2015 +0000
+++ b/src/extents.c	Sat Dec 12 19:08:46 2015 +0000
@@ -2850,7 +2850,7 @@
   if (extent_detached_p (ext))
     strcpy (bp, "detached");
   else
-    sprintf (bp, "%ld, %ld",
+    sprintf (bp, "%Id, %Id",
 	     XFIXNUM (Fextent_start_position (obj)),
 	     XFIXNUM (Fextent_end_position (obj)));
   bp += strlen (bp);