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:
parent
2c6a9faaae
commit
90d8445b57
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue