ref: 9c99675c1c02320c7ad74ae525e2449254a0dc8c
parent: eaafcf2187fbfb8516fe2c017bba4c349693d367
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Feb 7 19:29:06 EST 2014
aux/vga: fix format string error with 6c
--- a/sys/src/cmd/aux/vga/pci.c
+++ b/sys/src/cmd/aux/vga/pci.c
@@ -72,7 +72,7 @@
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)