=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/awk/Attic/lexyy.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src/usr.bin/awk/Attic/lexyy.c 1997/01/24 23:11:30 1.1 +++ src/usr.bin/awk/Attic/lexyy.c 1997/04/06 06:31:49 1.2 @@ -1902,7 +1902,7 @@ } # endif yyr = yyt; - if ( (int)yyt > (int)yycrank){ + if ( (long)yyt > (long)yycrank){ yyt = yyr + yych; if (yyt <= yytop && yyt->verify+yysvec == yystate){ if(yyt->advance+yysvec == YYLERR) /* error transitions */ @@ -1912,7 +1912,7 @@ } } # ifdef YYOPTIM - else if((int)yyt < (int)yycrank) { /* r < yycrank */ + else if((long)yyt < (long)yycrank) { /* r < yycrank */ yyt = yyr = yycrank+(yycrank-yyt); # ifdef LEXDEBUG if(debug)fprintf(yyout,"compressed state\n");