Remove unnecessary cast.

Reviewed by:	jilles
This commit is contained in:
Stefan Farfeleder 2011-03-07 07:31:15 +00:00
parent 2dc9da4376
commit 5db2bbd692
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219363

View File

@ -80,7 +80,7 @@ yylex()
case '7':
case '8':
case '9':
yylval.val = strtoarith_t(buf, (char **)&end, 0);
yylval.val = strtoarith_t(buf, &end, 0);
arith_buf = end;
return ARITH_NUM;
case 'A':