From ea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 5 Nov 2001 17:46:40 +0000 Subject: New pgindent run with fixes suggested by Tom. Patch manually reviewed, initdb/regression tests pass. --- src/interfaces/ecpg/lib/data.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/interfaces/ecpg/lib/data.c') diff --git a/src/interfaces/ecpg/lib/data.c b/src/interfaces/ecpg/lib/data.c index 6bfa8bfe751..0d4ec712b55 100644 --- a/src/interfaces/ecpg/lib/data.c +++ b/src/interfaces/ecpg/lib/data.c @@ -1,4 +1,4 @@ -/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/data.c,v 1.17 2001/10/05 17:37:07 meskes Exp $ */ +/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/data.c,v 1.18 2001/11/05 17:46:37 momjian Exp $ */ #include "postgres_fe.h" @@ -70,7 +70,7 @@ get_data(const PGresult *results, int act_tuple, int act_field, int lineno, case ECPGt_unsigned_long_long: ((unsigned long long int *) ind)[act_tuple] = -PQgetisnull(results, act_tuple, act_field); break; -#endif /* HAVE_LONG_LONG_INT_64 */ +#endif /* HAVE_LONG_LONG_INT_64 */ case ECPGt_NO_INDICATOR: if (PQgetisnull(results, act_tuple, act_field)) { @@ -176,7 +176,7 @@ get_data(const PGresult *results, int act_tuple, int act_field, int lineno, ((long long int *) var)[act_tuple] = (long long) 0; break; -#endif /* HAVE_STRTOLL */ +#endif /* HAVE_STRTOLL */ #ifdef HAVE_STRTOULL case ECPGt_unsigned_long_long: if (pval) @@ -193,8 +193,8 @@ get_data(const PGresult *results, int act_tuple, int act_field, int lineno, ((unsigned long long int *) var)[act_tuple] = (long long) 0; break; -#endif /* HAVE_STRTOULL */ -#endif /* HAVE_LONG_LONG_INT_64 */ +#endif /* HAVE_STRTOULL */ +#endif /* HAVE_LONG_LONG_INT_64 */ case ECPGt_float: case ECPGt_double: -- cgit v1.2.3