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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user