mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Suppress signed-vs-unsigned-char warnings in contrib.
This commit is contained in:
@ -171,7 +171,7 @@ pushval_asis(QPRS_STATE * state, int type, char *strval, int lenval, uint16 flag
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("word is too long")));
|
||||
|
||||
pushquery(state, type, ltree_crc32_sz((uint8 *) strval, lenval),
|
||||
pushquery(state, type, ltree_crc32_sz(strval, lenval),
|
||||
state->curop - state->op, lenval, flag);
|
||||
|
||||
while (state->curop - state->op + lenval + 1 >= state->lenop)
|
||||
|
Reference in New Issue
Block a user