Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
af18d3d0
Commit
af18d3d0
authored
Jul 15, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compile warning on Solaris, per buildfarm. (Why have we got
three slightly different copies of this file?)
parent
cd54eb2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
contrib/hstore/crc32.c
contrib/hstore/crc32.c
+1
-1
contrib/ltree/crc32.c
contrib/ltree/crc32.c
+2
-2
contrib/tsearch2/crc32.c
contrib/tsearch2/crc32.c
+2
-2
No files found.
contrib/hstore/crc32.c
View file @
af18d3d0
...
...
@@ -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
;
...
...
contrib/ltree/crc32.c
View file @
af18d3d0
/* Both POSIX and CRC32 checksums */
/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.
7 2006/09/22 21:39:57
tgl Exp $ */
/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.
8 2007/07/15 22:40:28
tgl Exp $ */
#include <sys/types.h>
#include <stdio.h>
...
...
@@ -99,7 +99,7 @@ static const unsigned int crc32tab[256] = {
unsigned
int
ltree_crc32_sz
(
char
*
buf
,
int
size
)
{
unsigned
int
crc
=
~
0
;
unsigned
int
crc
=
~
((
unsigned
int
)
0
)
;
char
*
p
;
int
len
,
nr
;
...
...
contrib/tsearch2/crc32.c
View file @
af18d3d0
/* Both POSIX and CRC32 checksums */
/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.
3 2006/03/11 04:38:30 momjian
Exp $ */
/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.
4 2007/07/15 22:40:28 tgl
Exp $ */
#include <sys/types.h>
#include <stdio.h>
...
...
@@ -92,7 +92,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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment