From: Vern Paxson Date: Tue, 21 Sep 1993 20:42:48 +0000 (+0000) Subject: PC lint tweak X-Git-Tag: flex-2-5-5b~403 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c75cda990110a078be146036f803b34cc657e0d;p=flex PC lint tweak --- diff --git a/scan.l b/scan.l index 7d3c76e..02d6dce 100644 --- a/scan.l +++ b/scan.l @@ -354,11 +354,11 @@ CCL_CHAR [^\\\n\]]|{ESCSEQ} } } -[/|*+?.()] return yytext[0]; +[/|*+?.()] return (int) yytext[0]; . RETURNCHAR; -[,*] return yytext[0]; +[,*] return (int) yytext[0]; ">" BEGIN(SECT2); return '>'; ">"/^ BEGIN(CARETISBOL); return '>'; {SCNAME} RETURNNAME;