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

View file

@ -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();