From 2bb6c7a632fc4c0afe2532ea4044d337d9b288ae Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Mon, 12 Mar 2012 13:38:00 -0700 Subject: [PATCH] s/PRIx64/PRIxPTR/ for uintptr_t printf() argument. --- src/prof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prof.c b/src/prof.c index b57c5b8a..2ca66c73 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); }