Mercurial > hg > xemacs-beta
diff src/alloca.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 | d363790fd936 |
children |
line wrap: on
line diff
--- a/src/alloca.c Thu Dec 10 17:55:59 2015 +0000 +++ b/src/alloca.c Sat Dec 12 19:08:46 2015 +0000 @@ -129,7 +129,7 @@ implementations of C, for example under Gould's UTX/32. */ pointer -xemacs_c_alloca (unsigned int size) +xemacs_c_alloca (EMACS_UINT size) { char probe; /* Probes stack depth: */ register char *depth = ADDRESS_FUNCTION (probe);