diff src/unexcw.c @ 5936:574f0cded429 cygwin

try to replace all nnnL or nnnUL constants with EMACS_[U]INT
author Henry Thompson <ht@markup.co.uk>
date Sun, 13 Dec 2015 13:22:58 +0000
parents 4dee0387b9de
children
line wrap: on
line diff
--- a/src/unexcw.c	Sat Dec 12 21:49:31 2015 +0000
+++ b/src/unexcw.c	Sun Dec 13 13:22:58 2015 +0000
@@ -59,7 +59,7 @@
 /* To prevent zero-initialized variables from being placed into the bss
    section, use non-zero values to represent an uninitialized state.  */
 #define UNINIT_PTR ((void *) 0xF0A0F0A0)
-#define UNINIT_LONG (0xF0A0F0A0L)
+#define UNINIT_LONG ((EMACS_INT)0xF0A0F0A0)
 
 static void get_section_info (int a_out, char* a_name);
 static void copy_executable_and_dump_data_section (int a_out, int a_new);