util: fix apparent statetrace bug

In the process of trying to eliminate boolean comparisons,
I ran across this statement that appears to be a bug
(should have been an assignment).
This commit is contained in:
Steve Reinhardt 2016-02-06 17:21:20 -08:00
parent 2728f7bd81
commit 4e65e25e25
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ TraceChild::ptraceSingleStep()
default: cout << "Unknown error" << endl; break;
}
cout << "Not able to single step!" << endl;
tracing == false;
tracing = false;
return false;
}
doWait();