rt: Change int to uint32_t. Put out burning tinderbox.

This commit is contained in:
Patrick Walton 2011-08-04 09:50:11 -07:00
parent e351ad762d
commit 6bb6922c28
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ struct type_param {
return NULL;
type_param *ptrs = arena.alloc<type_param>(n_params);
for (int i = 0; i < n_params; i++) {
for (uint32_t i = 0; i < n_params; i++) {
const type_desc *subtydesc = tydesc->first_param[i];
ptrs[i].shape = subtydesc->shape;
ptrs[i].tables = subtydesc->shape_tables;