diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-04-12 21:46:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-04-12 21:46:31 +0000 |
commit | 1cae920e3209e4f5b1464aaef0c8bee59c53c946 (patch) | |
tree | 80d76bc61eb613eb9c6af9ec8da32c42dbf591dd /contrib/intarray/_int_gist.c | |
parent | 6ae559daf8fec46c58f61c665252a9dc81bd6c3e (diff) | |
download | postgresql-1cae920e3209e4f5b1464aaef0c8bee59c53c946.tar.gz postgresql-1cae920e3209e4f5b1464aaef0c8bee59c53c946.zip |
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 e2f1225d2c3..f82024896f2 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); |