diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
commit | 075cede74858a9a04e97097b1ccd555121516c20 (patch) | |
tree | d5143a60a71fcaa81e2134cea052717c19fec9b4 /src/backend/access/gist | |
parent | 4f523a6f92f98e1b10e84b2d5a58b0ac3e2f8c2a (diff) | |
download | postgresql-075cede74858a9a04e97097b1ccd555121516c20.tar.gz postgresql-075cede74858a9a04e97097b1ccd555121516c20.zip |
Add typdefs to pgindent run.
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r-- | src/backend/access/gist/gist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index d12e4e5c6ea..b35cf77573e 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -59,7 +59,7 @@ static void GISTInitBuffer(Buffer b, uint32 f); static BlockNumber gistChooseSubtree(Relation r, IndexTuple itup, int level, GISTSTATE * giststate, - GISTSTACK ** retstack, Buffer * leafbuf); + GISTSTACK ** retstack, Buffer *leafbuf); static OffsetNumber gistchoose(Relation r, Page p, IndexTuple it, GISTSTATE * giststate); @@ -78,7 +78,7 @@ void gistbuild(Relation heap, Relation index, int natts, - AttrNumber * attnum, + AttrNumber *attnum, IndexStrategy istrat, uint16 pint, Datum * params, @@ -470,7 +470,7 @@ gistChooseSubtree(Relation r, IndexTuple itup, /* itup has compressed int level, GISTSTATE * giststate, GISTSTACK ** retstack /* out */ , - Buffer * leafbuf /* out */ ) + Buffer *leafbuf /* out */ ) { Buffer buffer; BlockNumber blk; |