From cbff9bf03861b8d63f598d3370c82a96511a754c Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 20 Apr 2019 19:00:39 -0700 Subject: Shorten some names with 'long' --- expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'expr.c') 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 { -- cgit v1.2.3