summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'dbus')
-rw-r--r--dbus/message.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/message.cc b/dbus/message.cc
index b52528d..918b860 100644
--- a/dbus/message.cc
+++ b/dbus/message.cc
@@ -172,7 +172,7 @@ std::string Message::ToStringInternal(const std::string& indent,
output += indent + "string \"" + value + "\"\n";
} else {
std::string truncated;
- TruncateUTF8ToByteSize(value, kTruncateLength, &truncated);
+ base::TruncateUTF8ToByteSize(value, kTruncateLength, &truncated);
base::StringAppendF(&truncated, "... (%" PRIuS " bytes in total)",
value.size());
output += indent + "string \"" + truncated + "\"\n";