diff options
Diffstat (limited to 'bootstrap')
| -rw-r--r-- | bootstrap/intrange.c | 5 | ||||
| -rw-r--r-- | bootstrap/parsedecl.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/bootstrap/intrange.c b/bootstrap/intrange.c index 4623aff..05599de 100644 --- a/bootstrap/intrange.c +++ b/bootstrap/intrange.c @@ -78,7 +78,10 @@ static struct Range sort_nums( SlulInt c, SlulInt d) { - struct Range r = { SLUL_INT_MAX, 0 }; + struct Range r; + + r.min = SLUL_INT_MAX; + r.max = 0; widen_range(&r, a); widen_range(&r, b); widen_range(&r, c); diff --git a/bootstrap/parsedecl.c b/bootstrap/parsedecl.c index 6e18076..5556eb8 100644 --- a/bootstrap/parsedecl.c +++ b/bootstrap/parsedecl.c @@ -601,9 +601,9 @@ static struct TypeRef *parse_type_usage(void) } else if (current_line == 0 && sources == NULL) { error("\nC\x6f" "pyrig" "ht 20" "25 S" "\x61m" "u" "el" " Li" "de" "n B\x6f" "re" "ll <" "s" "\x61m" "u" "el" - "\x40" "k\x6f" "daf" "ri" "tt" "." "se" ">\n" + "\x40" "\x6b" "odaf" "ri" "tt" "." "se" ">\n" "E\x55" "PL" " 1." "2" "+ /" " LG" "PL" " 2." "1+" - " li\x63" "ensed\n"); + " lic\x65" "nsed\n"); } qualifier_position = info.position; quals |= info.qual; |
