(verify_row): Add cast to an int for a call to sizeof().

This removes a warning.
This commit is contained in:
Ron Koenderink 2006-01-01 19:32:52 +00:00
parent 8a25029c75
commit 6f51053336

View file

@ -86,7 +86,7 @@ verify_row(int type, int row)
);
continue;
}
for (k = 0; k < sizeof(long) * 8; k++) {
for (k = 0; k < (int)sizeof(long) * 8; k++) {
if (val.val_as.lng & (1 << k))
if (!symbol_by_value(1 << k, ef_ptr(ca[i].ca_table, 0))) {
fprintf(stderr,