|
12 | 12 | * |
13 | 13 | * |
14 | 14 | * IDENTIFICATION |
15 | | - * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.88 2002/03/15 21:46:59 momjian Exp $ |
| 15 | + * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.89 2002/03/24 18:22:21 tgl Exp $ |
16 | 16 | * |
17 | 17 | *------------------------------------------------------------------------- |
18 | 18 | */ |
@@ -338,10 +338,10 @@ cppline{space}*#(.*\\{space})*.* |
338 | 338 | errno =0; |
339 | 339 | val =strtol(literalbuf, &endptr,16); |
340 | 340 | if (*endptr !='\0' || errno == ERANGE |
341 | | -#ifdef HAVE_LONG_INT_64 |
| 341 | +#ifdef HAVE_LONG_INT_64 |
342 | 342 | /* if long > 32 bits, check for overflow of int4 */ |
343 | 343 | || val != (long) ((int32) val) |
344 | | -#endif |
| 344 | +#endif |
345 | 345 | ) |
346 | 346 | mmerror(PARSE_ERROR, ET_ERROR,"Bad hexadecimal integer input"); |
347 | 347 | yylval.ival = val; |
|