mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Suppress signed-vs-unsigned-char warnings in contrib.
This commit is contained in:
@ -156,7 +156,7 @@ gtsvector_compress(PG_FUNCTION_ARGS)
|
||||
len = val->size;
|
||||
while (len--)
|
||||
{
|
||||
*arr = crc32_sz((uint8 *) &words[ptr->pos], ptr->len);
|
||||
*arr = crc32_sz(&words[ptr->pos], ptr->len);
|
||||
arr++;
|
||||
ptr++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user