Skip to content

Commit 6bb6922

Browse files
committed
rt: Change int to uint32_t. Put out burning tinderbox.
1 parent e351ad7 commit 6bb6922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rt/rust_shape.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ struct type_param {
230230
return NULL;
231231

232232
type_param *ptrs = arena.alloc<type_param>(n_params);
233-
for (int i = 0; i < n_params; i++) {
233+
for (uint32_t i = 0; i < n_params; i++) {
234234
const type_desc *subtydesc = tydesc->first_param[i];
235235
ptrs[i].shape = subtydesc->shape;
236236
ptrs[i].tables = subtydesc->shape_tables;

0 commit comments

Comments
 (0)