aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.y b/src/parser.y
index 503c2e4..c225b57 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -56,7 +56,7 @@ exp
: IDENT {
$$.eqn = xmalloc(sizeof(eqn_t));
$$.eqn->type = IDENT;
- $$.eqn->ch = $1;
+ $$.eqn->ch = $1;
$$.vars = 1 << (islower($1) ? $1-'a'+26 : $1-'A');
}
| NOT exp {