made a little mistake with the #else and #endif

This commit is contained in:
eck 1990-02-09 11:29:57 +00:00
parent 8a8bb6cf10
commit 67819cfd6c

View file

@ -586,9 +586,8 @@ ch_array(tpp, ex)
if (length == dim + 1) {
expr_warning(ex, "array is not null-terminated");
} else
#else
if (length > dim + 1) {
#endif
if (length > dim + 1) {
expr_strict(ex, "too many initialisers");
}
length = dim;