diff src/frame-msw.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 08cfc8f77fb6
children
line wrap: on
line diff
--- a/src/frame-msw.c	Thu Dec 10 17:55:59 2015 +0000
+++ b/src/frame-msw.c	Sat Dec 12 19:08:46 2015 +0000
@@ -602,7 +602,7 @@
   Ibyte str[255];
   struct frame *f = decode_mswindows_frame (frame);
 
-  qxesprintf (str, "%lu", (unsigned long) FRAME_MSWINDOWS_HANDLE (f));
+  qxesprintf (str, "%lu", (uintptr_t) FRAME_MSWINDOWS_HANDLE (f));
   return build_istring (str);
 }