aboutsummaryrefslogtreecommitdiff
path: root/lib/transform-dis.c
diff options
context:
space:
mode:
authorcomex2015-02-09 00:06:05 -0500
committercomex2015-02-09 00:06:05 -0500
commitd819360f9e619ddadde2bbae3cc1ec389a43a8e9 (patch)
tree00507e57c247abede74efcdde24c1bc7e9f7b1bd /lib/transform-dis.c
parentFix other architectures compiling - haven't tried *running* anything.. (diff)
downloadsubstitute-d819360f9e619ddadde2bbae3cc1ec389a43a8e9.tar.gz
more
Diffstat (limited to '')
-rw-r--r--lib/transform-dis.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/transform-dis.c b/lib/transform-dis.c
index 8f89fb3..fe7482d 100644
--- a/lib/transform-dis.c
+++ b/lib/transform-dis.c
@@ -44,7 +44,8 @@ void transform_dis_ret(struct transform_dis_ctx *ctx) {
static INLINE UNUSED
void transform_dis_unidentified(UNUSED struct transform_dis_ctx *ctx) {
#ifdef TRANSFORM_DIS_VERBOSE
- printf("transform_dis (%p): unidentified\n", (void *) ctx->base.pc);
+ printf("transform_dis (0x%llx): unidentified\n",
+ (unsigned long long) ctx->base.pc);
#endif
/* this isn't exhaustive, so unidentified is fine */
}