summaryrefslogtreecommitdiffstats
path: root/dbus/message.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-31 02:29:01 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-31 02:29:01 +0000
commit69226d73196ef840beeed6dce2712b5e18f83778 (patch)
tree1d053b36dc08dd8facbe19607a6e1873565f6966 /dbus/message.cc
parentdcde34b33c8b50b52da1a73358b4dec5b03fda40 (diff)
downloadchromium_src-69226d73196ef840beeed6dce2712b5e18f83778.zip
chromium_src-69226d73196ef840beeed6dce2712b5e18f83778.tar.gz
chromium_src-69226d73196ef840beeed6dce2712b5e18f83778.tar.bz2
c++11 ud suffix fixes for cros dbus files
No behavior change. BUG=263960 R=satorux@chromium.org Review URL: https://codereview.chromium.org/21131003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214521 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/message.cc')
-rw-r--r--dbus/message.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/message.cc b/dbus/message.cc
index e351716..b52528d 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";
}