Skip to content

Commit 1a7c6ee

Browse files
committed
Avoid gratuitous variation in spelling of same error message.
1 parent 980acc8 commit 1a7c6ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/utils/adt/geo_ops.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.73 2002/12/30 02:18:29 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.74 2003/01/21 19:44:26 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -3623,7 +3623,7 @@ path_add(PG_FUNCTION_ARGS)
36233623
/* Check for integer overflow */
36243624
if (base_size / sizeof(p1->p[0]) != (p1->npts + p2->npts) ||
36253625
size <= base_size)
3626-
elog(ERROR, "too many points requested.");
3626+
elog(ERROR, "Too many points requested");
36273627

36283628
result = (PATH *) palloc(size);
36293629

@@ -4449,7 +4449,7 @@ circle_poly(PG_FUNCTION_ARGS)
44494449

44504450
/* Check for integer overflow */
44514451
if (base_size / npts != sizeof(poly->p[0]) || size <= base_size)
4452-
elog(ERROR, "too many points requested");
4452+
elog(ERROR, "Too many points requested");
44534453

44544454
poly = (POLYGON *) palloc0(size); /* zero any holes */
44554455
poly->size = size;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy