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

Unified Diff: dbus/message.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/network/shill_property_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/message.cc
diff --git a/dbus/message.cc b/dbus/message.cc
index e35171612b072b27fd5e30cd4605264aa96be517..b52528d9f624ae24ee308ac87040d76d1e7e15bc 100644
--- a/dbus/message.cc
+++ b/dbus/message.cc
@@ -173,7 +173,7 @@ std::string Message::ToStringInternal(const std::string& indent,
} else {
std::string truncated;
TruncateUTF8ToByteSize(value, kTruncateLength, &truncated);
- base::StringAppendF(&truncated, "... (%"PRIuS" bytes in total)",
+ base::StringAppendF(&truncated, "... (%" PRIuS " bytes in total)",
value.size());
output += indent + "string \"" + truncated + "\"\n";
}
« no previous file with comments | « chromeos/network/shill_property_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698