fixed some warnings about mixing signed & unsigned integers

This commit is contained in:
Vern Paxson 2023-11-05 13:06:03 -08:00 committed by Arne Welzel
parent 23c08a05de
commit c49918ba8b
6 changed files with 9 additions and 9 deletions

View file

@ -233,7 +233,7 @@ ValPtr ZBody::Exec(Frame* f, StmtFlowType& flow) {
}
ValPtr ZBody::DoExec(Frame* f, StmtFlowType& flow) {
int pc = 0;
unsigned int pc = 0;
// Return value, or nil if none.
const ZVal* ret_u = nullptr;