1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Search contrib/tcl for tcl startup.

This commit is contained in:
Bruce Momjian
1998-10-02 01:22:43 +00:00
parent e12f4162c3
commit 3f2fff5c5d
2 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.27 1998/09/12 16:04:35 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/numutils.c,v 1.28 1998/10/02 01:22:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -50,7 +50,7 @@
int32
pg_atoi(char *s, int size, int c)
{
long l;
long l = 0;
char *badp = (char *) NULL;
Assert(s);