Skip to content

Commit

Permalink
FIX: resolved signed/unsigned mismatch warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Sep 19, 2021
1 parent bfd464d commit 9d225e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/m-gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static void Mark_Series(REBSER *series, REBCNT depth);
***********************************************************************/
{
if (field->type == STRUCT_TYPE_STRUCT) {
int len = 0;
REBCNT len = 0;
REBSER *series = NULL;

CHECK_MARK(field->fields, depth);
Expand Down Expand Up @@ -189,7 +189,7 @@ static void Mark_Series(REBSER *series, REBCNT depth);
/*
***********************************************************************/
{
int len = 0;
REBCNT len = 0;
REBSER *series = NULL;
if (IS_MARK_SERIES(STRUCT_DATA_BIN(stu))) return;

Expand Down

0 comments on commit 9d225e5

Please sign in to comment.