summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitriy Ivanov <dimitry@google.com>2014-03-04 20:05:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-04 20:05:22 +0000
commit2a16a5847a2811626a108f8cbd7606680647df86 (patch)
tree39b0882e5fb7b70c2f65f560839b2d1b4e8455dc
parent858d0dd1e529575181abd8de607e46f7b273cc9d (diff)
parent7c1fc0ed42609c6c44d6738e0d8ef1d4425a6758 (diff)
downloadsystem_core-2a16a5847a2811626a108f8cbd7606680647df86.zip
system_core-2a16a5847a2811626a108f8cbd7606680647df86.tar.gz
system_core-2a16a5847a2811626a108f8cbd7606680647df86.tar.bz2
Merge "fix: making lsof show devies and loaded .so file names correctly"
-rw-r--r--toolbox/lsof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolbox/lsof.c b/toolbox/lsof.c
index 113c120..af321af 100644
--- a/toolbox/lsof.c
+++ b/toolbox/lsof.c
@@ -113,7 +113,7 @@ static void print_maps(struct pid_info_t* info)
if (!maps)
goto out;
- while (fscanf(maps, "%*x-%*x %*s %zx %5s %ld %s\n", &offset, device, &inode,
+ while (fscanf(maps, "%*x-%*x %*s %zx %s %ld %s\n", &offset, device, &inode,
file) == 4) {
// We don't care about non-file maps
if (inode == 0 || !strcmp(device, "00:00"))