aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2011-09-27 08:59:06 -0700
committerPaul Eggert <[email protected]>2011-09-27 08:59:06 -0700
commit90d8445b57bba4ff60933d42531518535f2afa0c (patch)
tree28a1831008866a3cd8523f71a85510f2663c25c5 /src/data.c
parent2c6a9faaaebb2fca42c4f020865c7c077864cad8 (diff)
* data.c (Faref): Use ptrdiff_t, not int.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index b81d1b8854..d38dc5e0c5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -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))