Skip to content

Commit

Permalink
fixed sign in remove-recent for large IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Sep 15, 2023
1 parent a97f15d commit d1003cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/chuck_vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ t_CKUINT Chuck_VM::process_msg( Chuck_Msg * & msg )
goto done;
}

t_CKINT xid = m_shred_id;
t_CKUINT xid = m_shred_id;
Chuck_VM_Shred * shred = NULL;
while( xid >= 0 && m_shreduler->remove( shred = m_shreduler->lookup( xid ) ) == 0 )
xid--;
Expand Down

0 comments on commit d1003cc

Please sign in to comment.