diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-02-07 03:24:07 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-02-07 03:24:07 +0100 |
commit | 8ac5227a3626dd70a51d2c091b8730ce0f2d8403 (patch) | |
tree | f8d9a341036ecb38f32aca1e6304674c14897ded /sys/src/9/zynq | |
parent | e8760ba6360d3ccd75d8ccf8319ff40954b6659c (diff) |
zynq: fix print format warning in screeninit()
Diffstat (limited to 'sys/src/9/zynq')
-rw-r--r-- | sys/src/9/zynq/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/zynq/screen.c b/sys/src/9/zynq/screen.c index a3211ffa9..872ab88f8 100644 --- a/sys/src/9/zynq/screen.c +++ b/sys/src/9/zynq/screen.c @@ -81,7 +81,7 @@ screeninit(void) uchar *fb; fb = xspanalloc(Dx(xgscreen.r) * Dy(xgscreen.r) * 3, 64, 0); - print("%x\n", PADDR(fb)); + print("%p\n", PADDR(fb)); memsetchan(&xgscreen, BGR24); conf.monitor = 1; xgdata.bdata = fb; |