Commit 1cae920e authored by Bruce Momjian's avatar Bruce Momjian

Change int->int32, for clarity.

jw.pgsql@sduept.com
parent 6ae559da
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment