1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Fix newly introduced datetime.c compile failure; not enough parens.

This commit is contained in:
Bruce Momjian
2001-12-29 21:28:18 +00:00
parent 48ad40ba99
commit 9e7b9c6f54
2 changed files with 65 additions and 60 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.84 2001/12/29 18:40:58 thomas Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.85 2001/12/29 21:28:18 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -959,7 +959,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
if (tzp == NULL)
return -1;
if ((isdigit(*field[i]) || (ptype != 0))
if (isdigit(*field[i]) || ptype != 0)
{
char *cp;