Add comment to pg_atoi.

This commit is contained in:
Bruce Momjian 2005-12-01 21:16:13 +00:00
parent 0e6b1528b7
commit 8c8c0108e8
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/numutils.c,v 1.70 2005/11/30 23:10:08 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/numutils.c,v 1.71 2005/12/01 21:16:13 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -73,7 +73,7 @@ pg_atoi(char *s, int size, int c)
errmsg("invalid input syntax for integer: \"%s\"",
s)));
errno = 0;
errno = 0; /* avoid having to check the result for failure */
l = strtol(s, &badp, 10);
/* We made no progress parsing the string, so bail out */