diff options
author | comex | 2015-02-09 00:06:05 -0500 |
---|---|---|
committer | comex | 2015-02-09 00:06:05 -0500 |
commit | d819360f9e619ddadde2bbae3cc1ec389a43a8e9 (patch) | |
tree | 00507e57c247abede74efcdde24c1bc7e9f7b1bd /lib/transform-dis.c | |
parent | Fix other architectures compiling - haven't tried *running* anything.. (diff) | |
download | substitute-d819360f9e619ddadde2bbae3cc1ec389a43a8e9.tar.gz |
more
Diffstat (limited to '')
-rw-r--r-- | lib/transform-dis.c | 3 |
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 */ } |