s/PRIx64/PRIxPTR/ for uintptr_t printf() argument.

This commit is contained in:
Jason Evans 2012-03-12 13:38:00 -07:00
parent 125b93e43f
commit 2bb6c7a632

View File

@ -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);
}