Missing 'break' statement caused errors whenever (N)REVERSING bitvectors

This commit is contained in:
jjgarcia 2005-06-27 11:47:19 +00:00
parent c4a5c7271c
commit 877f0922a1

View file

@ -955,6 +955,7 @@ ecl_reverse_subarray(cl_object x, cl_index i0, cl_index i1)
x->array.self.bit[j/CHAR_BIT]
&= ~(0200>>j%CHAR_BIT);
}
break;
default:
FEerror("Bad array type", 0);
}