Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad18b10

Browse files
committedNov 11, 2002
Add cast to suppress compile warning on Alphas.
1 parent 75fee45 commit ad18b10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/backend/parser/scan.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.102 2002/11/04 14:25:42 tgl Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.103 2002/11/11 03:33:38 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -580,7 +580,7 @@ yyerror(const char *message)
580580
elog(ERROR, "parser: %s at end of input", message);
581581
else
582582
elog(ERROR, "parser: %s at or near \"%s\" at character %d",
583-
message, loc, (loc - scanbuf + 1));
583+
message, loc, (int) (loc - scanbuf + 1));
584584
}
585585

586586

0 commit comments

Comments
 (0)
Please sign in to comment.