diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 02:41:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 02:41:22 +0000 |
commit | 319dbfa7364721d3343af03a7ce063c2a2c9d385 (patch) | |
tree | a2146fe02c49ce1e497b7c287dfcaa367a703ae4 /src/backend/utils/adt/geo_selfuncs.c | |
parent | a90f12fd9d6886da4f0734288496361a304d3882 (diff) |
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
Diffstat (limited to 'src/backend/utils/adt/geo_selfuncs.c')
-rw-r--r-- | src/backend/utils/adt/geo_selfuncs.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/utils/adt/geo_selfuncs.c b/src/backend/utils/adt/geo_selfuncs.c index 240639d6eda..d07230e41f7 100644 --- a/src/backend/utils/adt/geo_selfuncs.c +++ b/src/backend/utils/adt/geo_selfuncs.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.4 1997/09/07 04:50:20 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_selfuncs.c,v 1.5 1997/09/08 02:30:44 momjian Exp $ * * XXX These are totally bogus. * @@ -28,7 +28,7 @@ areasel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 4.0; @@ -42,7 +42,7 @@ areajoinsel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 4.0; @@ -73,7 +73,7 @@ leftsel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 6.0; @@ -90,7 +90,7 @@ leftjoinsel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 6.0; @@ -110,7 +110,7 @@ contsel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 10.0; @@ -127,7 +127,7 @@ contjoinsel(Oid opid, char *value, int32 flag) { - float64 result; + float64 result; result = (float64) palloc(sizeof(float64data)); *result = 1.0 / 10.0; |