From 0d4be9304a1029fb089294ffbc0318df9f57e528 Mon Sep 17 00:00:00 2001 From: stefanf Date: Mon, 7 Mar 2011 07:31:15 +0000 Subject: Remove unnecessary cast. Reviewed by: jilles --- bin/sh/arith_yylex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/sh/arith_yylex.c') diff --git a/bin/sh/arith_yylex.c b/bin/sh/arith_yylex.c index 08e43a4..cfb9724d 100644 --- a/bin/sh/arith_yylex.c +++ b/bin/sh/arith_yylex.c @@ -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': -- cgit v1.1