From 65e806cba1f0f154d51caa7478e7192ce58d1056 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 26 Feb 2010 02:01:40 +0000 Subject: pgindent run for 9.0 --- src/backend/utils/adt/numeric.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/utils/adt/numeric.c') diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c index 1b9f7944959..4b8271e45f5 100644 --- a/src/backend/utils/adt/numeric.c +++ b/src/backend/utils/adt/numeric.c @@ -14,7 +14,7 @@ * Copyright (c) 1998-2010, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/numeric.c,v 1.122 2010/02/08 20:39:51 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/numeric.c,v 1.123 2010/02/26 02:01:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -3403,7 +3403,7 @@ static char * get_str_from_var_sci(NumericVar *var, int rscale) { int32 exponent; - NumericVar denominator; + NumericVar denominator; NumericVar significand; int denom_scale; size_t len; @@ -3466,9 +3466,9 @@ get_str_from_var_sci(NumericVar *var, int rscale) /* * Allocate space for the result. * - * In addition to the significand, we need room for the exponent decoration - * ("e"), the sign of the exponent, up to 10 digits for the exponent - * itself, and of course the null terminator. + * In addition to the significand, we need room for the exponent + * decoration ("e"), the sign of the exponent, up to 10 digits for the + * exponent itself, and of course the null terminator. */ len = strlen(sig_out) + 13; str = palloc(len); -- cgit v1.2.3