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

Unified Diff: chrome/test/nacl/nacl_browsertest.cc

Issue 419323002: clang/win: Fix a few warnings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
Index: chrome/test/nacl/nacl_browsertest.cc
diff --git a/chrome/test/nacl/nacl_browsertest.cc b/chrome/test/nacl/nacl_browsertest.cc
index a9c73ab653dc9b501e0a1fee575380126e386bd0..197f1fba2ac5a5c9dff69d6834b7f7f60008bb9d 100644
--- a/chrome/test/nacl/nacl_browsertest.cc
+++ b/chrome/test/nacl/nacl_browsertest.cc
@@ -174,7 +174,7 @@ base::FilePath::StringType NumberOfCoresAsFilePathString() {
SYSTEM_INFO system_info;
GetSystemInfo(&system_info);
#if TELEMETRY
- fprintf(stderr, "browser says nprocessors = %d\n",
+ fprintf(stderr, "browser says nprocessors = %lu\n",
system_info.dwNumberOfProcessors);
fflush(NULL);
#endif

Powered by Google App Engine
This is Rietveld 408576698