summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:27:49 +0100
committerCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:27:49 +0100
commitce55048ed8aa387b05bef18cfeb96b31b3abb081 (patch)
tree2b6dd641e5148c0562f02e583b50c708c3fef2eb
parentb36e4b4f757d5a508c1c74c5c190bc4af70d47be (diff)
use %p not %lux
-rw-r--r--limbo/types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/limbo/types.c b/limbo/types.c
index 6d231115..32955483 100644
--- a/limbo/types.c
+++ b/limbo/types.c
@@ -3466,7 +3466,7 @@ expandtype(Type *t, Type *instt, Decl *adtt, Tpair **tp)
if(t == nil)
return nil;
-if(debug['w']) print("expandtype %d %lux %T\n", t->kind, (ulong)t, t);
+if(debug['w']) print("expandtype %d %#p %T\n", t->kind, t, t);
if(!toccurs(t, tp))
return t;
if(debug['w']) print("\texpanding\n");