src/w32fns.c (emacs_abort): Use intptr_t as argument of
INT_BUFSIZE_BOUND, to avoid compiler warnings.
+2013-12-18 Eli Zaretskii <eliz@gnu.org>
+
+ * w32fns.c (emacs_abort): Use intptr_t as argument of
+ INT_BUFSIZE_BOUND, to avoid compiler warnings.
+
2013-12-18 Glenn Morris <rgm@gnu.org>
* lread.c (Fload): Pass load_prefer_newer to openp.
int errfile_fd = -1;
int j;
char buf[sizeof ("\r\nException at this address:\r\n\r\n")
- + 2 * INT_BUFSIZE_BOUND (void *)];
+ /* The type below should really be 'void *', but
+ INT_BUFSIZE_BOUND cannot handle that without
+ triggering compiler warnings (under certain
+ pedantic warning switches), it wants an
+ integer type. */
+ + 2 * INT_BUFSIZE_BOUND (intptr_t)];
#ifdef CYGWIN
int stderr_fd = 2;
#else