* src/LR0.c (allocate_itemsets): kernel_size contains ints, not

size_ts.
Reported by Hans Aberg.
This commit is contained in:
Akim Demaille
2001-11-26 13:01:10 +00:00
parent abe1baa044
commit 6fedd4d1d6
2 changed files with 7 additions and 1 deletions

View File

@@ -94,7 +94,7 @@ allocate_itemsets (void)
}
shift_symbol = symbol_count;
kernel_size = XCALLOC (size_t, nsyms);
kernel_size = XCALLOC (int, nsyms);
}