summaryrefslogtreecommitdiffstats
path: root/toolbox
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-03-09 21:10:10 -0700
committerElliott Hughes <enh@google.com>2015-03-09 21:10:10 -0700
commit8ac94d3a545c65499b6492ec2c76d4757535fcfe (patch)
tree7d141d4cfe074aa64f4fcbbdde144710055ead4a /toolbox
parent9cce837d025d05a07a3b91cf23337a7b688c3eb9 (diff)
downloadsystem_core-8ac94d3a545c65499b6492ec2c76d4757535fcfe.zip
system_core-8ac94d3a545c65499b6492ec2c76d4757535fcfe.tar.gz
system_core-8ac94d3a545c65499b6492ec2c76d4757535fcfe.tar.bz2
Fix LP32 build.
Change-Id: I66e084330e7a32eac639d06187e780ffa0ad7b14
Diffstat (limited to 'toolbox')
-rw-r--r--toolbox/ps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolbox/ps.c b/toolbox/ps.c
index 18129ff..cf3f05a 100644
--- a/toolbox/ps.c
+++ b/toolbox/ps.c
@@ -1,6 +1,7 @@
#include <ctype.h>
#include <dirent.h>
#include <fcntl.h>
+#include <inttypes.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
@@ -192,7 +193,7 @@ static int ps_line(int pid, int tid, char *namefilter)
wchan[wchan_len = 0] = '\0';
}
close(fd);
- printf(" %10.*s %0*lx %s ", (int) wchan_len, wchan, (int) PC_WIDTH, eip, state);
+ printf(" %10.*s %0*" PRIxPTR " %s ", (int) wchan_len, wchan, (int) PC_WIDTH, eip, state);
if (display_flags & SHOW_ABI) {
print_exe_abi(pid);
}