summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Felipe Leme <felipeal@google.com> 2016-02-09 16:35:14 -0800
committer Felipe Leme <felipeal@google.com> 2016-02-09 16:35:14 -0800
commit1b0225a4792d92ff67ac8a0aa79352fad40bd805 (patch)
tree1052249cf8ad51ba88bafa498396696d9bee1ff6
parent60869c9e1e91170d487715fc30b795d786630c54 (diff)
Fixed format.
Change-Id: If0322e3dcf56005541aa08e0ab91dae10d2d385d
-rw-r--r--cmds/dumpstate/dumpstate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp
index df9333a0b1..6520e3b031 100644
--- a/cmds/dumpstate/dumpstate.cpp
+++ b/cmds/dumpstate/dumpstate.cpp
@@ -144,7 +144,7 @@ void add_mountinfo() {
mount_points.clear();
DurationReporter duration_reporter(title, NULL);
for_each_pid(do_mountinfo, NULL);
- MYLOGD("%s: %zu entries added to zip file\n", title, mount_points.size());
+ MYLOGD("%s: %d entries added to zip file\n", title, (int) mount_points.size());
}
static void dump_dev_files(const char *title, const char *driverpath, const char *filename)