X-Git-Url: https://git.saurik.com/apple/securityd.git/blobdiff_plain/ee396ef47db58c01c7ceaecfec60781c95ffeea1..4cd1cad0dea00daa03e1b54fdf2797a02373ad5b:/src/structure.cpp?ds=sidebyside diff --git a/src/structure.cpp b/src/structure.cpp index 0f1c8e7..effd439 100644 --- a/src/structure.cpp +++ b/src/structure.cpp @@ -153,7 +153,7 @@ NodeCore::NodeCore() // override this to add text to your Node type's state dump output void NodeCore::dumpNode() { - Debug::dump("%s@%p rc=%u", Debug::typeName(*this).c_str(), this, unsigned(refCountForDebuggingOnly())); + Debug::dump("%s@%p rc=%u", Debug::typeName(*this).c_str(), this, unsigned(refCountForDebuggingOnly())); if (mParent) Debug::dump(" parent=%p", mParent.get()); if (mReferent) @@ -164,7 +164,7 @@ void NodeCore::dumpNode() // override this to completely re-implement the dump format for your Node type void NodeCore::dump() { - dumpNode(); + dumpNode(); if (!mReferences.empty()) { Debug::dump(" {"); for (ReferenceSet::const_iterator it = mReferences.begin(); it != mReferences.end(); it++) { @@ -180,7 +180,7 @@ void NodeCore::dump() // dump all known nodes void NodeCore::dumpAll() { - StLock _(mCoreLock); + StLock _(mCoreLock); time_t now; time(&now); Debug::dump("\nNODE DUMP (%24.24s)\n", ctime(&now)); for (set::const_iterator it = mCoreNodes.begin(); it != mCoreNodes.end(); it++)