Skip to content

Commit

Permalink
[whitespace] empty lines in epochprop.c are now actually empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
msdemlei committed May 23, 2024
1 parent a063d3e commit 453990f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/epochprop.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ epoch_prop(PG_FUNCTION_ARGS) {
input.parallax = PG_GETARG_FLOAT8(1);
}
input.parallax_valid = fabs(input.parallax) > PX_MIN;

if (PG_ARGISNULL(2)) {
input.pm[0] = 0;
input.pm[1] = 0;
Expand Down Expand Up @@ -200,7 +200,7 @@ epoch_prop(PG_FUNCTION_ARGS) {
retvals[3] = Float8GetDatum(output.pm[0]);
retvals[4] = Float8GetDatum(output.pm[1]);
retvals[5] = Float8GetDatum(output.rv);

{
int lower_bounds[1] = {1};
int dims[1] = {6};
Expand Down

0 comments on commit 453990f

Please sign in to comment.