summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2012-03-12 20:38:00 (GMT)
committerJason Evans <je@fb.com>2012-03-12 20:38:55 (GMT)
commit2bb6c7a632fc4c0afe2532ea4044d337d9b288ae (patch)
tree49f511866dbcfe486a38743d01fb79024fc242d8 /src
parent125b93e43fe764e46c8a89fc2f3957a4e02c92e1 (diff)
downloadjemalloc-2bb6c7a632fc4c0afe2532ea4044d337d9b288ae.zip
jemalloc-2bb6c7a632fc4c0afe2532ea4044d337d9b288ae.tar.gz
jemalloc-2bb6c7a632fc4c0afe2532ea4044d337d9b288ae.tar.bz2
s/PRIx64/PRIxPTR/ for uintptr_t printf() argument.
Diffstat (limited to 'src')
-rw-r--r--src/prof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prof.c b/src/prof.c
index b57c5b8..2ca66c7 100644
--- a/src/prof.c
+++ b/src/prof.c
@@ -780,7 +780,7 @@ prof_dump_ctx(bool propagate_err, prof_ctx_t *ctx, prof_bt_t *bt)
return (true);
for (i = 0; i < bt->len; i++) {
- if (prof_printf(propagate_err, " %#"PRIx64,
+ if (prof_printf(propagate_err, " %#"PRIxPTR,
(uintptr_t)bt->vec[i]))
return (true);
}