aboutsummaryrefslogtreecommitdiff
path: root/expr.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-20 19:00:39 -0700
committerMichael Forney <mforney@mforney.org>2019-04-20 19:19:54 -0700
commitcbff9bf03861b8d63f598d3370c82a96511a754c (patch)
tree5a11f1cff5b770e186f174b122aff6b90e4d6c4f /expr.c
parent3be663812bd6cc94107b8ff8425246441795f30f (diff)
Shorten some names with 'long'
Diffstat (limited to 'expr.c')
-rw-r--r--expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/expr.c b/expr.c
index 1ed040c..657e211 100644
--- a/expr.c
+++ b/expr.c
@@ -371,7 +371,7 @@ primaryexpr(struct scope *s)
else if (tolower(end[0]) == 'f' && !end[1])
e->type = &typefloat;
else if (tolower(end[0]) == 'l' && !end[1])
- e->type = &typelongdouble;
+ e->type = &typeldouble;
else
error(&tok.loc, "invalid floating constant suffix '%s'", *end);
} else {