mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 646259: Some trivial formatting fixes to deadlock detector output. r=bsmedberg
This commit is contained in:
parent
cc8b4c9c6c
commit
63313bea5e
@ -84,7 +84,7 @@ BlockingResourceBase::DeadlockDetectorEntry::Print(
|
||||
out += mName;
|
||||
|
||||
if (maybeCurrentlyAcquired) {
|
||||
fputs(" (currently acquired)", stderr);
|
||||
fputs(" (currently acquired)\n", stderr);
|
||||
out += " (currently acquired)\n";
|
||||
}
|
||||
|
||||
@ -237,7 +237,7 @@ BlockingResourceBase::PrintCycle(const DDT::ResourceAcquisitionArray* aCycle,
|
||||
const DDT::ResourceAcquisition* it = 1 + aCycle->Elements();
|
||||
for (i = 1; i < len - 1; ++i, ++it) {
|
||||
fputs("\n--- Next dependency:\n", stderr);
|
||||
out += "Next dependency:\n";
|
||||
out += "\nNext dependency:\n";
|
||||
|
||||
maybeImminent &= it->mResource->Print(*it, out);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user