diff options
author | 2016-02-09 16:35:14 -0800 | |
---|---|---|
committer | 2016-02-09 16:35:14 -0800 | |
commit | 1b0225a4792d92ff67ac8a0aa79352fad40bd805 (patch) | |
tree | 1052249cf8ad51ba88bafa498396696d9bee1ff6 | |
parent | 60869c9e1e91170d487715fc30b795d786630c54 (diff) |
Fixed format.
Change-Id: If0322e3dcf56005541aa08e0ab91dae10d2d385d
-rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 2 |
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) |