From: Tom Lane Date: Tue, 21 Jan 2003 19:44:26 +0000 (+0000) Subject: Avoid gratuitous variation in spelling of same error message. X-Git-Tag: REL7_4_BETA1~1177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a7c6ee8c610291638754d883f946f9380d5a35e;p=postgresql Avoid gratuitous variation in spelling of same error message. --- diff --git a/src/backend/utils/adt/geo_ops.c b/src/backend/utils/adt/geo_ops.c index d21a5db50e..9fe40d2ccb 100644 --- a/src/backend/utils/adt/geo_ops.c +++ b/src/backend/utils/adt/geo_ops.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.73 2002/12/30 02:18:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.74 2003/01/21 19:44:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -3623,7 +3623,7 @@ path_add(PG_FUNCTION_ARGS) /* Check for integer overflow */ if (base_size / sizeof(p1->p[0]) != (p1->npts + p2->npts) || size <= base_size) - elog(ERROR, "too many points requested."); + elog(ERROR, "Too many points requested"); result = (PATH *) palloc(size); @@ -4449,7 +4449,7 @@ circle_poly(PG_FUNCTION_ARGS) /* Check for integer overflow */ if (base_size / npts != sizeof(poly->p[0]) || size <= base_size) - elog(ERROR, "too many points requested"); + elog(ERROR, "Too many points requested"); poly = (POLYGON *) palloc0(size); /* zero any holes */ poly->size = size;