From e50f52a074bdf0d6a9dc384840e641c4c0b0bb1a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 4 Sep 2002 20:31:48 +0000 Subject: pgindent run. --- src/backend/utils/adt/datum.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/utils/adt/datum.c') diff --git a/src/backend/utils/adt/datum.c b/src/backend/utils/adt/datum.c index 0a751ff1dff..9519ef2b674 100644 --- a/src/backend/utils/adt/datum.c +++ b/src/backend/utils/adt/datum.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/datum.c,v 1.24 2002/08/24 15:00:46 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/datum.c,v 1.25 2002/09/04 20:31:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -81,7 +81,7 @@ datumGetSize(Datum value, bool typByVal, int typLen) else if (typLen == -2) { /* It is a cstring datatype */ - char *s = (char *) DatumGetPointer(value); + char *s = (char *) DatumGetPointer(value); if (!PointerIsValid(s)) elog(ERROR, "datumGetSize: Invalid Datum Pointer"); @@ -175,9 +175,9 @@ datumIsEqual(Datum value1, Datum value2, bool typByVal, int typLen) /* * just compare the two datums. NOTE: just comparing "len" bytes * will not do the work, because we do not know how these bytes - * are aligned inside the "Datum". We assume instead that any - * given datatype is consistent about how it fills extraneous - * bits in the Datum. + * are aligned inside the "Datum". We assume instead that any + * given datatype is consistent about how it fills extraneous bits + * in the Datum. */ res = (value1 == value2); } -- cgit v1.2.3