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

Unified Diff: chromeos/network/network_event_log_unittest.cc

Issue 21131003: c++11 ud suffix fixes for cros dbus files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « chromeos/dbus/audio_node.cc ('k') | chromeos/network/network_state_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_event_log_unittest.cc
diff --git a/chromeos/network/network_event_log_unittest.cc b/chromeos/network/network_event_log_unittest.cc
index e98f5a04117f62b83e812b8239a0d33418bdbc8f..e98b32c4391a9c78cb30f1687fd692a180a6060c 100644
--- a/chromeos/network/network_event_log_unittest.cc
+++ b/chromeos/network/network_event_log_unittest.cc
@@ -110,7 +110,7 @@ TEST_F(NetworkEventLogTest, TestMaxNetworkEvents) {
for (size_t i = 0; i < entries_to_add; ++i) {
network_event_log::internal::AddEntry(
"test", 1, LOG_LEVEL_EVENT,
- base::StringPrintf("event_%"PRIuS, i), "");
+ base::StringPrintf("event_%" PRIuS, i), "");
}
std::string output = GetLogString(OLDEST_FIRST, 0);
size_t output_lines = CountLines(output);
« no previous file with comments | « chromeos/dbus/audio_node.cc ('k') | chromeos/network/network_state_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698