Skip to content

Commit

Permalink
FIX: signed/unsigned mismatch warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Nov 6, 2023
1 parent b6640ec commit 76c8c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/f-modify.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
else if (IS_TUPLE(src_val)) {
src_ser = BUF_FORM;
src_len = VAL_TUPLE_LEN(src_val);
for (int i = 0; i < src_len; i++) {
for (uint i = 0; i < src_len; i++) {
SERIES_DATA(src_ser)[i] = VAL_TUPLE(src_val)[i];
}
SERIES_TAIL(src_ser) = src_len;
Expand Down

0 comments on commit 76c8c09

Please sign in to comment.