ref: d4b243b025346ec707878781f473789cf1561404
parent: 649fada71a63c072cd29cbf3d1975b96335f727f
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)
--
⑨