diff options
| author | Michael Forney <mforney@mforney.org> | 2019-04-20 19:00:39 -0700 | 
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2019-04-20 19:19:54 -0700 | 
| commit | cbff9bf03861b8d63f598d3370c82a96511a754c (patch) | |
| tree | 5a11f1cff5b770e186f174b122aff6b90e4d6c4f /expr.c | |
| parent | 3be663812bd6cc94107b8ff8425246441795f30f (diff) | |
| download | cproc-cbff9bf03861b8d63f598d3370c82a96511a754c.tar.xz | |
Shorten some names with 'long'
Diffstat (limited to 'expr.c')
| -rw-r--r-- | expr.c | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -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 {  | 
