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

Unified Diff: ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc

Issue 1210203002: ozone: evdev: Fix printf format string issues on 32-bit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « ui/events/ozone/evdev/event_device_test_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc
diff --git a/ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc b/ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc
index 3b578a391195df2956b55da756b80a0bf80e0869..5bbafb3bfab7dcade2890375fb8b67a126bfb290 100644
--- a/ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc
+++ b/ui/events/ozone/evdev/touch_noise/touch_noise_finder_unittest.cc
@@ -53,7 +53,7 @@ class TouchNoiseFinderTest : public testing::Test {
size_t slot = touches[j].slot;
if (touch_noise_finder_->SlotHasNoise(slot) != expect_noise) {
LOG(ERROR) << base::StringPrintf(
- "Incorrect filtering at %dms for slot %lu", entry.time_ms,
+ "Incorrect filtering at %dms for slot %zu", entry.time_ms,
slot);
return false;
}
« no previous file with comments | « ui/events/ozone/evdev/event_device_test_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698