diff options
| author | Bruce Momjian | 2006-04-12 21:46:31 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2006-04-12 21:46:31 +0000 |
| commit | 19e650e392581254793ca73d8eacd233c25546cb (patch) | |
| tree | fa8c7592f64c3ee650dd5a675aac522732a52f96 /contrib/intarray/_int_gist.c | |
| parent | 77b6afee2233961a4e1168deb19b0f4aaac047ba (diff) | |
Change int->int32, for clarity.
jw.pgsql@sduept.com
Diffstat (limited to 'contrib/intarray/_int_gist.c')
| -rw-r--r-- | contrib/intarray/_int_gist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/intarray/_int_gist.c b/contrib/intarray/_int_gist.c index e2f1225d2c..f82024896f 100644 --- a/contrib/intarray/_int_gist.c +++ b/contrib/intarray/_int_gist.c @@ -195,7 +195,7 @@ g_int_compress(PG_FUNCTION_ARGS) min = (dr[i] - dr[i - 1]); cand = i; } - memmove((void *) &dr[cand - 1], (void *) &dr[cand + 1], (len - cand - 1) * sizeof(int)); + memmove((void *) &dr[cand - 1], (void *) &dr[cand + 1], (len - cand - 1) * sizeof(int32)); len -= 2; } r = resize_intArrayType(r, len); |
