mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
Fix compile warning on Solaris, per buildfarm. (Why have we got
three slightly different copies of this file?)
This commit is contained in:
@@ -90,7 +90,7 @@ static const unsigned int crc32tab[256] = {
|
||||
unsigned int
|
||||
crc32_sz(char *buf, int size)
|
||||
{
|
||||
unsigned int crc = ~0;
|
||||
unsigned int crc = ~((unsigned int) 0);
|
||||
char *p;
|
||||
int len,
|
||||
nr;
|
||||
|
||||
Reference in New Issue
Block a user