Style fix in expr(1)

(*valp). --> valp->
This commit is contained in:
FRIGN 2015-03-23 22:44:07 +01:00
parent 50ecbd43ad
commit f668afa1ff
1 changed files with 2 additions and 2 deletions

4
expr.c
View File

@ -211,8 +211,8 @@ parse(char *expr[], int numexpr)
for (; *expr; expr++) {
switch ((type = lex(*expr, &v))) {
case VAL:
(*valp).str = v.str;
(*valp).num = v.num;
valp->str = v.str;
valp->num = v.num;
valp++;
break;
case '(':