diff options
| author | Bruce Momjian | 2004-08-30 02:54:42 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2004-08-30 02:54:42 +0000 |
| commit | 15d3f9f6b7849a70281f151f0def7a6d335767d7 (patch) | |
| tree | 98d285e17c671a56e484e98916703280e1947a78 /contrib | |
| parent | 166300f318f5b4795c0f7679144a1c23c0118163 (diff) | |
Another pgindent run with lib typedefs added.
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/btree_gist/btree_utils_var.c | 2 | ||||
| -rw-r--r-- | contrib/tsearch2/tsvector.c | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/contrib/btree_gist/btree_utils_var.c b/contrib/btree_gist/btree_utils_var.c index 01e29038163..f5198392c40 100644 --- a/contrib/btree_gist/btree_utils_var.c +++ b/contrib/btree_gist/btree_utils_var.c @@ -4,7 +4,7 @@ /* Returns a better readable representaion of variable key ( sets pointer ) */ -extern GBT_VARKEY_R +extern GBT_VARKEY_R gbt_var_key_readable(const GBT_VARKEY * k) { diff --git a/contrib/tsearch2/tsvector.c b/contrib/tsearch2/tsvector.c index 9f26dec670f..a8e1dbfe738 100644 --- a/contrib/tsearch2/tsvector.c +++ b/contrib/tsearch2/tsvector.c @@ -1003,47 +1003,47 @@ Datum tsvector_cmp(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_INT32(res); + PG_RETURN_INT32(res); } Datum tsvector_lt(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res < 0) ? true : false); + PG_RETURN_BOOL((res < 0) ? true : false); } Datum tsvector_le(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res <= 0) ? true : false); + PG_RETURN_BOOL((res <= 0) ? true : false); } Datum tsvector_eq(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res == 0) ? true : false); + PG_RETURN_BOOL((res == 0) ? true : false); } Datum tsvector_ge(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res >= 0) ? true : false); + PG_RETURN_BOOL((res >= 0) ? true : false); } Datum tsvector_gt(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res > 0) ? true : false); + PG_RETURN_BOOL((res > 0) ? true : false); } Datum tsvector_ne(PG_FUNCTION_ARGS) { RUNCMP - PG_RETURN_BOOL((res != 0) ? true : false); + PG_RETURN_BOOL((res != 0) ? true : false); } |
