diff options
author | Andres Freund <andres@anarazel.de> | 2019-07-31 00:05:21 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-07-31 00:05:21 -0700 |
commit | 870b1d6800cc2173ab672449047efbc30bdc1b57 (patch) | |
tree | cf6bab07ba9dd6dc021caf00bf6f3264fd486103 /src/include/access/gist_private.h | |
parent | 6384e87be28ee8d69ef11e49413b115506a3c6d3 (diff) | |
download | postgresql-870b1d6800cc2173ab672449047efbc30bdc1b57.tar.gz postgresql-870b1d6800cc2173ab672449047efbc30bdc1b57.zip |
Remove superfluous newlines in function prototypes.
These were introduced by pgindent due to fixe to broken
indentation (c.f. 8255c7a5eeba8). Previously the mis-indentation of
function prototypes was creatively used to reduce indentation in a few
places.
As that formatting only exists in master and REL_12_STABLE, it seems
better to fix it in both, rather than having some odd indentation in
v12 that somebody might copy for future patches or such.
Author: Andres Freund
Discussion: https://postgr.es/m/20190728013754.jwcbe5nfyt3533vx@alap3.anarazel.de
Backpatch: 12-
Diffstat (limited to 'src/include/access/gist_private.h')
-rw-r--r-- | src/include/access/gist_private.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/gist_private.h b/src/include/access/gist_private.h index acebe6c93b0..664f322df3a 100644 --- a/src/include/access/gist_private.h +++ b/src/include/access/gist_private.h @@ -473,8 +473,7 @@ extern bool gistPageRecyclable(Page page); extern void gistfillbuffer(Page page, IndexTuple *itup, int len, OffsetNumber off); extern IndexTuple *gistextractpage(Page page, int *len /* out */ ); -extern IndexTuple *gistjoinvector( - IndexTuple *itvec, int *len, +extern IndexTuple *gistjoinvector(IndexTuple *itvec, int *len, IndexTuple *additvec, int addlen); extern IndexTupleData *gistfillitupvec(IndexTuple *vec, int veclen, int *memlen); |