summaryrefslogtreecommitdiffstats
path: root/logd/LogStatistics.cpp
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2015-03-20 13:44:53 -0700
committerMark Salyzyn <salyzyn@google.com>2015-03-20 13:46:00 -0700
commit317843decf92ddf63d8110df8169c33546d587c3 (patch)
treecf4c1aa4f34804790dd253415b8f91658c127603 /logd/LogStatistics.cpp
parent61af6530605e10ca99f066c851436921c0385479 (diff)
downloadsystem_core-317843decf92ddf63d8110df8169c33546d587c3.tar.gz
system_core-317843decf92ddf63d8110df8169c33546d587c3.tar.bz2
system_core-317843decf92ddf63d8110df8169c33546d587c3.zip
logd: statistics: missing comma
regression from statistics rewrite series resulted in build breakage Change-Id: I71b532b23437b9b5f3af47b18c9110f3d7dda48a
Diffstat (limited to 'logd/LogStatistics.cpp')
-rw-r--r--logd/LogStatistics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/logd/LogStatistics.cpp b/logd/LogStatistics.cpp
index 19d599c60..accd660d6 100644
--- a/logd/LogStatistics.cpp
+++ b/logd/LogStatistics.cpp
@@ -154,7 +154,7 @@ static void format_line(android::String8 &output,
static const size_t total_len = 70;
output.appendFormat("%s%*s\n", name.string(),
- (int)std::max(total_len - name.length() - 1, size.length() + 1)
+ (int)std::max(total_len - name.length() - 1, size.length() + 1),
size.string());
}