Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: util/misc/uuid_test.cc

Issue 849193002: win: Some %zu to PRIuS (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fix include order Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | util/numeric/checked_range_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/misc/uuid_test.cc
diff --git a/util/misc/uuid_test.cc b/util/misc/uuid_test.cc
index 39ccf6b092be2d35d1e59cdef097ebdba3235efb..01f3b6a5f73718d4352f3ab62dc8e15d662cf291 100644
--- a/util/misc/uuid_test.cc
+++ b/util/misc/uuid_test.cc
@@ -19,6 +19,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/format_macros.h"
#include "base/strings/stringprintf.h"
#include "gtest/gtest.h"
@@ -180,8 +181,8 @@ TEST(UUID, FromString) {
for (size_t index = 0; index < arraysize(kCases); ++index) {
const TestCase& test_case = kCases[index];
- SCOPED_TRACE(
- base::StringPrintf("index %zu: %s", index, test_case.uuid_string));
+ SCOPED_TRACE(base::StringPrintf(
+ "index %" PRIuS ": %s", index, test_case.uuid_string));
UUID uuid;
EXPECT_EQ(test_case.success,
« no previous file with comments | « no previous file | util/numeric/checked_range_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698