1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

* data.c (Faref): Use ptrdiff_t, not int.

This commit is contained in:
Paul Eggert 2011-09-27 08:59:06 -07:00
parent 2c6a9faaae
commit 90d8445b57

View file

@ -2092,7 +2092,7 @@ or a byte-code object. IDX starts at 0. */)
}
else
{
int size = 0;
ptrdiff_t size = 0;
if (VECTORP (array))
size = ASIZE (array);
else if (COMPILEDP (array))