diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-08-07 19:05:15 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-08-07 19:05:15 +0000 |
commit | 89c862f29868fefd9d49fec214df52250fb82759 (patch) | |
tree | 6ae749ff9eaead69943173dbe3e2189048c5c51a /lldb/source/DataFormatters/FormatManager.cpp | |
parent | ed420bb5c3975666ca5157f55f4c7380ae045da0 (diff) | |
download | bcm5719-llvm-89c862f29868fefd9d49fec214df52250fb82759.tar.gz bcm5719-llvm-89c862f29868fefd9d49fec214df52250fb82759.zip |
clean up about 22 warnings messages
llvm-svn: 187900
Diffstat (limited to 'lldb/source/DataFormatters/FormatManager.cpp')
-rw-r--r-- | lldb/source/DataFormatters/FormatManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/DataFormatters/FormatManager.cpp b/lldb/source/DataFormatters/FormatManager.cpp index 1f746827b0f..eeae8bc9a19 100644 --- a/lldb/source/DataFormatters/FormatManager.cpp +++ b/lldb/source/DataFormatters/FormatManager.cpp @@ -351,7 +351,7 @@ FormatManager::GetSummaryFormat (ValueObject& valobj, { log->Printf("[FormatManager::GetSummaryFormat] Cache search success. Returning."); if (log->GetDebug()) - log->Printf("[FormatManager::GetSummaryFormat] Cache hits: %llu - Cache Misses: %llu", m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); + log->Printf("[FormatManager::GetSummaryFormat] Cache hits: %" PRIu64 " - Cache Misses: %" PRIu64, m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); } return retval; } @@ -366,7 +366,7 @@ FormatManager::GetSummaryFormat (ValueObject& valobj, m_format_cache.SetSummary(valobj_type,retval); } if (log && log->GetDebug()) - log->Printf("[FormatManager::GetSummaryFormat] Cache hits: %llu - Cache Misses: %llu", m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); + log->Printf("[FormatManager::GetSummaryFormat] Cache hits: %" PRIu64 " - Cache Misses: %" PRIu64, m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); return retval; } @@ -388,7 +388,7 @@ FormatManager::GetSyntheticChildren (ValueObject& valobj, { log->Printf("[FormatManager::GetSyntheticChildren] Cache search success. Returning."); if (log->GetDebug()) - log->Printf("[FormatManager::GetSyntheticChildren] Cache hits: %llu - Cache Misses: %llu", m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); + log->Printf("[FormatManager::GetSyntheticChildren] Cache hits: %" PRIu64 " - Cache Misses: %" PRIu64, m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); } return retval; } @@ -403,7 +403,7 @@ FormatManager::GetSyntheticChildren (ValueObject& valobj, m_format_cache.SetSynthetic(valobj_type,retval); } if (log && log->GetDebug()) - log->Printf("[FormatManager::GetSyntheticChildren] Cache hits: %llu - Cache Misses: %llu", m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); + log->Printf("[FormatManager::GetSyntheticChildren] Cache hits: %" PRIu64 " - Cache Misses: %" PRIu64, m_format_cache.GetCacheHits(), m_format_cache.GetCacheMisses()); return retval; } #endif |