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:
parent
2728f7bd81
commit
4e65e25e25
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ TraceChild::ptraceSingleStep()
|
||||||
default: cout << "Unknown error" << endl; break;
|
default: cout << "Unknown error" << endl; break;
|
||||||
}
|
}
|
||||||
cout << "Not able to single step!" << endl;
|
cout << "Not able to single step!" << endl;
|
||||||
tracing == false;
|
tracing = false;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
doWait();
|
doWait();
|
||||||
|
|
Loading…
Reference in a new issue