summaryrefslogtreecommitdiff
path: root/sys/src/cmd/aux/vga/pci.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-02-08 00:29:06 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-02-08 00:29:06 +0100
commit9c99675c1c02320c7ad74ae525e2449254a0dc8c (patch)
tree01a55946702918ed34447f2fcfc1f1f9757387b5 /sys/src/cmd/aux/vga/pci.c
parenteaafcf2187fbfb8516fe2c017bba4c349693d367 (diff)
aux/vga: fix format string error with 6c
Diffstat (limited to 'sys/src/cmd/aux/vga/pci.c')
-rw-r--r--sys/src/cmd/aux/vga/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/aux/vga/pci.c b/sys/src/cmd/aux/vga/pci.c
index db531b265..ad1227101 100644
--- a/sys/src/cmd/aux/vga/pci.c
+++ b/sys/src/cmd/aux/vga/pci.c
@@ -72,7 +72,7 @@ pcicfginit(void)
break;
p->mem[j].bar = strtoul(s+1, &s, 16);
p->mem[j].size = strtoul(s+1, &s, 10);
- trace("\tmem[%d] = %p %d\n", j, p->mem[j].bar, p->mem[j].size);
+ trace("\tmem[%d] = %lux %d\n", j, p->mem[j].bar, p->mem[j].size);
}
if(pcilist != nil)