Fix uninitialized variable warning

This commit is contained in:
Tim Wojtulewicz 2022-01-10 17:06:39 -07:00
parent c786dc8f48
commit 9834793386

View file

@ -296,8 +296,8 @@ ValPtr ZBody::DoExec(Frame* f, int start_pc, StmtFlowType& flow)
auto& z = insts[pc];
#ifdef DEBUG
int profile_pc;
double profile_CPU;
int profile_pc = 0;
double profile_CPU = 0.0;
if ( do_profile )
{