mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix cpluspluscheck in checksum code
C++ is more picky about comparing signed and unsigned integers.
This commit is contained in:
parent
14a85031b1
commit
129759d6a5
@ -141,7 +141,7 @@ pg_checksum_block(char *data, uint32 size)
|
|||||||
uint32 sums[N_SUMS];
|
uint32 sums[N_SUMS];
|
||||||
uint32 (*dataArr)[N_SUMS] = (uint32 (*)[N_SUMS]) data;
|
uint32 (*dataArr)[N_SUMS] = (uint32 (*)[N_SUMS]) data;
|
||||||
uint32 result = 0;
|
uint32 result = 0;
|
||||||
int i,
|
uint32 i,
|
||||||
j;
|
j;
|
||||||
|
|
||||||
/* ensure that the size is compatible with the algorithm */
|
/* ensure that the size is compatible with the algorithm */
|
||||||
|
Loading…
Reference in New Issue
Block a user