* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
+ * 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
{
#if ENABLE(SAMPLING_COUNTERS)
if (s_abstractSamplingCounterChain != &s_abstractSamplingCounterChainEnd) {
- dataLog("\nSampling Counter Values:\n");
+ dataLogF("\nSampling Counter Values:\n");
for (AbstractSamplingCounter* currCounter = s_abstractSamplingCounterChain; (currCounter != &s_abstractSamplingCounterChainEnd); currCounter = currCounter->m_next)
- dataLog("\t%s\t: %lld\n", currCounter->m_name, currCounter->m_counter);
- dataLog("\n\n");
+ dataLogF("\t%s\t: %lld\n", currCounter->m_name, currCounter->m_counter);
+ dataLogF("\n\n");
}
s_completed = true;
#endif