aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-03-24 18:22:21 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-03-24 18:22:21 +0000
commit5eed835b9af7ae6993c56b62b6cd15dba5533006 (patch)
treead562ed2918b0ba460ade3dbdd6982ec82bf4c20
parentea10ec1b69c0aba24c1dc4570f40e976a42bfddb (diff)
downloadpostgresql-5eed835b9af7ae6993c56b62b6cd15dba5533006.tar.gz
postgresql-5eed835b9af7ae6993c56b62b6cd15dba5533006.zip
Indenting #if commands is not portable, is it?
-rw-r--r--src/interfaces/ecpg/preproc/pgc.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l
index 7a617c6d873..5341d093018 100644
--- a/src/interfaces/ecpg/preproc/pgc.l
+++ b/src/interfaces/ecpg/preproc/pgc.l
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.88 2002/03/15 21:46:59 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.89 2002/03/24 18:22:21 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -338,10 +338,10 @@ cppline {space}*#(.*\\{space})*.*
errno = 0;
val = strtol(literalbuf, &endptr, 16);
if (*endptr != '\0' || errno == ERANGE
- #ifdef HAVE_LONG_INT_64
+#ifdef HAVE_LONG_INT_64
/* if long > 32 bits, check for overflow of int4 */
|| val != (long) ((int32) val)
- #endif
+#endif
)
mmerror(PARSE_ERROR, ET_ERROR, "Bad hexadecimal integer input");
yylval.ival = val;